package.json 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. {
  2. "name": "@jupyterlab/notebook-extension",
  3. "version": "2.0.0",
  4. "description": "JupyterLab - Notebook 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. "files": [
  16. "lib/*.d.ts",
  17. "lib/*.js.map",
  18. "lib/*.js",
  19. "schema/*.json",
  20. "style/*.css"
  21. ],
  22. "sideEffects": [
  23. "style/**/*"
  24. ],
  25. "main": "lib/index.js",
  26. "types": "lib/index.d.ts",
  27. "style": "style/index.css",
  28. "directories": {
  29. "lib": "lib/"
  30. },
  31. "scripts": {
  32. "build": "tsc -b",
  33. "clean": "rimraf lib",
  34. "docs": "typedoc src",
  35. "prepublishOnly": "npm run build",
  36. "watch": "tsc -b --watch"
  37. },
  38. "dependencies": {
  39. "@jupyterlab/application": "^2.0.0",
  40. "@jupyterlab/apputils": "^2.0.0",
  41. "@jupyterlab/cells": "^2.0.0",
  42. "@jupyterlab/codeeditor": "^2.0.0",
  43. "@jupyterlab/coreutils": "^4.0.0",
  44. "@jupyterlab/docmanager": "^2.0.0",
  45. "@jupyterlab/filebrowser": "^2.0.0",
  46. "@jupyterlab/launcher": "^2.0.0",
  47. "@jupyterlab/mainmenu": "^2.0.0",
  48. "@jupyterlab/nbformat": "^2.0.0",
  49. "@jupyterlab/notebook": "^2.0.0",
  50. "@jupyterlab/property-inspector": "^2.0.0",
  51. "@jupyterlab/rendermime": "^2.0.0",
  52. "@jupyterlab/services": "^5.0.0",
  53. "@jupyterlab/settingregistry": "^2.0.0",
  54. "@jupyterlab/statedb": "^2.0.0",
  55. "@jupyterlab/statusbar": "^2.0.0",
  56. "@jupyterlab/ui-components": "^2.0.0",
  57. "@lumino/algorithm": "^1.2.3",
  58. "@lumino/commands": "^1.10.1",
  59. "@lumino/coreutils": "^1.4.2",
  60. "@lumino/disposable": "^1.3.5",
  61. "@lumino/messaging": "^1.3.3",
  62. "@lumino/widgets": "^1.11.1"
  63. },
  64. "devDependencies": {
  65. "rimraf": "~3.0.0",
  66. "typedoc": "^0.15.4",
  67. "typescript": "~3.7.3"
  68. },
  69. "publishConfig": {
  70. "access": "public"
  71. },
  72. "jupyterlab": {
  73. "extension": true,
  74. "schemaDir": "schema"
  75. }
  76. }