package.json 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. {
  2. "name": "@jupyterlab/fileeditor-extension",
  3. "version": "3.0.0-rc.15",
  4. "description": "JupyterLab - Editor Widget 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/**/*.css",
  17. "style/index.js"
  18. ],
  19. "main": "lib/index.js",
  20. "types": "lib/index.d.ts",
  21. "style": "style/index.css",
  22. "directories": {
  23. "lib": "lib/"
  24. },
  25. "files": [
  26. "lib/*.d.ts",
  27. "lib/*.js.map",
  28. "lib/*.js",
  29. "schema/*.json",
  30. "style/**/*.css",
  31. "style/index.js"
  32. ],
  33. "scripts": {
  34. "build": "tsc -b",
  35. "clean": "rimraf lib && rimraf tsconfig.tsbuildinfo",
  36. "docs": "typedoc src",
  37. "prepublishOnly": "npm run build",
  38. "watch": "tsc -b --watch"
  39. },
  40. "dependencies": {
  41. "@jupyterlab/application": "^3.0.0-rc.15",
  42. "@jupyterlab/apputils": "^3.0.0-rc.15",
  43. "@jupyterlab/codeeditor": "^3.0.0-rc.15",
  44. "@jupyterlab/codemirror": "^3.0.0-rc.15",
  45. "@jupyterlab/console": "^3.0.0-rc.15",
  46. "@jupyterlab/coreutils": "^5.0.0-rc.15",
  47. "@jupyterlab/docregistry": "^3.0.0-rc.15",
  48. "@jupyterlab/filebrowser": "^3.0.0-rc.15",
  49. "@jupyterlab/fileeditor": "^3.0.0-rc.15",
  50. "@jupyterlab/launcher": "^3.0.0-rc.15",
  51. "@jupyterlab/mainmenu": "^3.0.0-rc.15",
  52. "@jupyterlab/settingregistry": "^3.0.0-rc.15",
  53. "@jupyterlab/statusbar": "^3.0.0-rc.15",
  54. "@jupyterlab/translation": "^3.0.0-rc.15",
  55. "@jupyterlab/ui-components": "^3.0.0-rc.15",
  56. "@lumino/commands": "^1.12.0",
  57. "@lumino/coreutils": "^1.5.3",
  58. "@lumino/widgets": "^1.16.1"
  59. },
  60. "devDependencies": {
  61. "rimraf": "~3.0.0",
  62. "typedoc": "~0.20.0-beta.27",
  63. "typescript": "~4.1.3"
  64. },
  65. "publishConfig": {
  66. "access": "public"
  67. },
  68. "jupyterlab": {
  69. "extension": true,
  70. "schemaDir": "schema"
  71. },
  72. "styleModule": "style/index.js"
  73. }