package.json 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. {
  2. "name": "@jupyterlab/extensionmanager-extension",
  3. "version": "2.1.0",
  4. "description": "JupyterLab - Extension Manager 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. "listing/*.json",
  21. "style/*.css"
  22. ],
  23. "sideEffects": [
  24. "style/*.css"
  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/extensionmanager": "^2.1.0",
  43. "@jupyterlab/mainmenu": "^2.1.0",
  44. "@jupyterlab/settingregistry": "^2.1.0",
  45. "@jupyterlab/ui-components": "^2.1.0"
  46. },
  47. "devDependencies": {
  48. "rimraf": "~3.0.0",
  49. "typedoc": "^0.15.4",
  50. "typescript": "~3.7.3"
  51. },
  52. "publishConfig": {
  53. "access": "public"
  54. },
  55. "jupyterlab": {
  56. "extension": true,
  57. "schemaDir": "schema"
  58. }
  59. }