package.json 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. {
  2. "name": "@jupyterlab/documentsearch-extension",
  3. "version": "2.0.2",
  4. "description": "Search document types",
  5. "homepage": "https://github.com/jupyterlab/jupyterlab",
  6. "bugs": {
  7. "url": "https://github.com/jupyterlab/jupyterlab/issues"
  8. },
  9. "repository": {
  10. "type": "git",
  11. "url": "https://github.com/jupyterlab/jupyterlab.git"
  12. },
  13. "license": "BSD-3-Clause",
  14. "author": "Project Jupyter",
  15. "files": [
  16. "lib/**/*.{d.ts,eot,gif,html,jpg,js,js.map,json,png,svg,woff2,ttf}",
  17. "schema/*.json",
  18. "style/**/*.{css,eot,gif,html,jpg,json,png,svg,woff2,ttf}"
  19. ],
  20. "sideEffects": [
  21. "style/**/*"
  22. ],
  23. "main": "lib/index.js",
  24. "types": "lib/index.d.ts",
  25. "style": "style/index.css",
  26. "directories": {
  27. "lib": "lib/"
  28. },
  29. "scripts": {
  30. "build": "tsc -b",
  31. "clean": "rimraf lib",
  32. "prepublishOnly": "npm run build",
  33. "watch": "tsc -w --listEmittedFiles"
  34. },
  35. "dependencies": {
  36. "@jupyterlab/application": "^2.0.2",
  37. "@jupyterlab/apputils": "^2.0.2",
  38. "@jupyterlab/documentsearch": "^2.0.2",
  39. "@jupyterlab/mainmenu": "^2.0.2",
  40. "@lumino/widgets": "^1.11.1"
  41. },
  42. "devDependencies": {
  43. "rimraf": "~3.0.0",
  44. "typescript": "~3.7.3"
  45. },
  46. "publishConfig": {
  47. "access": "public"
  48. },
  49. "jupyterlab": {
  50. "extension": true,
  51. "schemaDir": "schema"
  52. }
  53. }