package.json.orig 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. {
  2. "name": "@jupyterlab/notebook-extension",
  3. "version": "4.5.6",
  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. "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",
  26. "lib/**/*.js.map",
  27. "lib/**/*.js",
  28. "schema/*.json",
  29. "style/*.css",
  30. "style/index.js",
  31. "src/**/*.{ts,tsx}"
  32. ],
  33. "scripts": {
  34. "build": "tsc -b",
  35. "clean": "rimraf lib && rimraf tsconfig.tsbuildinfo",
  36. "watch": "tsc -b --watch"
  37. },
  38. "dependencies": {
  39. "@jupyter/ydoc": "^3.1.0",
  40. "@jupyterlab/application": "^4.5.6",
  41. "@jupyterlab/apputils": "^4.6.6",
  42. "@jupyterlab/cell-toolbar": "^4.5.6",
  43. "@jupyterlab/cells": "^4.5.6",
  44. "@jupyterlab/codeeditor": "^4.5.6",
  45. "@jupyterlab/codemirror": "^4.5.6",
  46. "@jupyterlab/completer": "^4.5.6",
  47. "@jupyterlab/coreutils": "^6.5.6",
  48. "@jupyterlab/docmanager": "^4.5.6",
  49. "@jupyterlab/docmanager-extension": "^4.5.6",
  50. "@jupyterlab/docregistry": "^4.5.6",
  51. "@jupyterlab/documentsearch": "^4.5.6",
  52. "@jupyterlab/filebrowser": "^4.5.6",
  53. "@jupyterlab/launcher": "^4.5.6",
  54. "@jupyterlab/logconsole": "^4.5.6",
  55. "@jupyterlab/lsp": "^4.5.6",
  56. "@jupyterlab/mainmenu": "^4.5.6",
  57. "@jupyterlab/metadataform": "^4.5.6",
  58. "@jupyterlab/nbformat": "^4.5.6",
  59. "@jupyterlab/notebook": "^4.5.6",
  60. "@jupyterlab/observables": "^5.5.6",
  61. "@jupyterlab/property-inspector": "^4.5.6",
  62. "@jupyterlab/rendermime": "^4.5.6",
  63. "@jupyterlab/services": "^7.5.6",
  64. "@jupyterlab/settingregistry": "^4.5.6",
  65. "@jupyterlab/statedb": "^4.5.6",
  66. "@jupyterlab/statusbar": "^4.5.6",
  67. "@jupyterlab/toc": "^6.5.6",
  68. "@jupyterlab/translation": "^4.5.6",
  69. "@jupyterlab/ui-components": "^4.5.6",
  70. "@lumino/algorithm": "^2.0.4",
  71. "@lumino/commands": "^2.3.3",
  72. "@lumino/coreutils": "^2.2.2",
  73. "@lumino/disposable": "^2.1.5",
  74. "@lumino/messaging": "^2.0.4",
  75. "@lumino/polling": "^2.1.5",
  76. "@lumino/widgets": "^2.7.5",
  77. "@rjsf/utils": "^5.13.4",
  78. "react": "^18.2.0"
  79. },
  80. "devDependencies": {
  81. "rimraf": "~5.0.5",
  82. "typescript": "~5.5.4"
  83. },
  84. "publishConfig": {
  85. "access": "public"
  86. },
  87. "jupyterlab": {
  88. "extension": true,
  89. "schemaDir": "schema"
  90. },
  91. "styleModule": "style/index.js"
  92. }