package.json 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. {
  2. "name": "@jupyterlab/documentsearch-extension",
  3. "version": "3.2.0-beta.0",
  4. "description": "JupyterLab - Document Search Extension",
  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. "sideEffects": [
  16. "style/**/*"
  17. ],
  18. "main": "lib/index.js",
  19. "types": "lib/index.d.ts",
  20. "style": "style/index.css",
  21. "directories": {
  22. "lib": "lib/"
  23. },
  24. "files": [
  25. "lib/**/*.{d.ts,eot,gif,html,jpg,js,js.map,json,png,svg,woff2,ttf}",
  26. "schema/*.json",
  27. "style/**/*.{css,eot,gif,html,jpg,json,png,svg,woff2,ttf}",
  28. "style/index.js"
  29. ],
  30. "scripts": {
  31. "build": "tsc -b",
  32. "clean": "rimraf lib && rimraf tsconfig.tsbuildinfo",
  33. "watch": "tsc -w --listEmittedFiles"
  34. },
  35. "dependencies": {
  36. "@jupyterlab/application": "^3.2.0-beta.0",
  37. "@jupyterlab/apputils": "^3.2.0-beta.0",
  38. "@jupyterlab/documentsearch": "^3.2.0-beta.0",
  39. "@jupyterlab/translation": "^3.2.0-beta.0",
  40. "@lumino/widgets": "^1.19.0"
  41. },
  42. "devDependencies": {
  43. "rimraf": "~3.0.0",
  44. "typescript": "~4.1.3"
  45. },
  46. "publishConfig": {
  47. "access": "public"
  48. },
  49. "jupyterlab": {
  50. "extension": true,
  51. "schemaDir": "schema"
  52. },
  53. "styleModule": "style/index.js"
  54. }