package.json 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. {
  2. "name": "@jupyterlab/fileeditor-extension",
  3. "version": "3.0.0-alpha.4",
  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. "files": [
  16. "lib/*.d.ts",
  17. "lib/*.js.map",
  18. "lib/*.js",
  19. "schema/*.json",
  20. "style/**/*.css"
  21. ],
  22. "sideEffects": [
  23. "style/**/*.css"
  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 && rimraf tsconfig.tsbuildinfo",
  34. "docs": "typedoc src",
  35. "prepublishOnly": "npm run build",
  36. "watch": "tsc -b --watch"
  37. },
  38. "dependencies": {
  39. "@jupyterlab/application": "^3.0.0-alpha.4",
  40. "@jupyterlab/apputils": "^3.0.0-alpha.4",
  41. "@jupyterlab/codeeditor": "^3.0.0-alpha.4",
  42. "@jupyterlab/codemirror": "^3.0.0-alpha.4",
  43. "@jupyterlab/console": "^3.0.0-alpha.4",
  44. "@jupyterlab/coreutils": "^5.0.0-alpha.4",
  45. "@jupyterlab/docregistry": "^3.0.0-alpha.4",
  46. "@jupyterlab/filebrowser": "^3.0.0-alpha.4",
  47. "@jupyterlab/fileeditor": "^3.0.0-alpha.4",
  48. "@jupyterlab/launcher": "^3.0.0-alpha.4",
  49. "@jupyterlab/mainmenu": "^3.0.0-alpha.4",
  50. "@jupyterlab/settingregistry": "^3.0.0-alpha.4",
  51. "@jupyterlab/statusbar": "^3.0.0-alpha.4",
  52. "@jupyterlab/ui-components": "^3.0.0-alpha.4",
  53. "@lumino/commands": "^1.10.1",
  54. "@lumino/coreutils": "^1.4.3",
  55. "@lumino/widgets": "^1.11.1"
  56. },
  57. "devDependencies": {
  58. "rimraf": "~3.0.0",
  59. "typedoc": "^0.17.7",
  60. "typescript": "~3.9.2"
  61. },
  62. "publishConfig": {
  63. "access": "public"
  64. },
  65. "jupyterlab": {
  66. "extension": true,
  67. "schemaDir": "schema"
  68. }
  69. }