package.json 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. {
  2. "name": "@jupyterlab/apputils-extension",
  3. "version": "2.1.0",
  4. "description": "JupyterLab - Application Utilities 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. "style/*.css",
  20. "style/images/*.svg",
  21. "schema/*.json"
  22. ],
  23. "sideEffects": [
  24. "style/**/*"
  25. ],
  26. "main": "lib/index.js",
  27. "types": "lib/index.d.ts",
  28. "style": "style/index.css",
  29. "directories": {
  30. "lib": "lib/"
  31. },
  32. "scripts": {
  33. "build": "tsc -b",
  34. "clean": "rimraf lib && rimraf tsconfig.tsbuildinfo",
  35. "docs": "typedoc src",
  36. "prepublishOnly": "npm run build",
  37. "watch": "tsc -b --watch"
  38. },
  39. "dependencies": {
  40. "@jupyterlab/application": "^2.1.0",
  41. "@jupyterlab/apputils": "^2.1.0",
  42. "@jupyterlab/coreutils": "^4.1.0",
  43. "@jupyterlab/mainmenu": "^2.1.0",
  44. "@jupyterlab/settingregistry": "^2.1.0",
  45. "@jupyterlab/statedb": "^2.1.0",
  46. "@jupyterlab/ui-components": "^2.1.0",
  47. "@lumino/algorithm": "^1.2.3",
  48. "@lumino/commands": "^1.10.1",
  49. "@lumino/coreutils": "^1.4.2",
  50. "@lumino/disposable": "^1.3.5",
  51. "@lumino/polling": "^1.1.1",
  52. "@lumino/widgets": "^1.11.1",
  53. "es6-promise": "~4.2.8"
  54. },
  55. "devDependencies": {
  56. "rimraf": "~3.0.0",
  57. "typedoc": "^0.15.4",
  58. "typescript": "~3.7.3"
  59. },
  60. "publishConfig": {
  61. "access": "public"
  62. },
  63. "jupyterlab": {
  64. "extension": true,
  65. "schemaDir": "schema"
  66. }
  67. }