package.json 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. {
  2. "name": "@jupyterlab/settingeditor",
  3. "version": "3.0.0-alpha.4",
  4. "description": "The JupyterLab default setting editor interface",
  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. ],
  21. "sideEffects": [
  22. "style/*.css"
  23. ],
  24. "main": "lib/index.js",
  25. "types": "lib/index.d.ts",
  26. "style": "style/index.css",
  27. "directories": {
  28. "lib": "lib/"
  29. },
  30. "scripts": {
  31. "build": "tsc -b",
  32. "clean": "rimraf lib && rimraf tsconfig.tsbuildinfo",
  33. "docs": "typedoc src",
  34. "prepublishOnly": "npm run build",
  35. "watch": "tsc -b --watch"
  36. },
  37. "dependencies": {
  38. "@jupyterlab/apputils": "^3.0.0-alpha.4",
  39. "@jupyterlab/codeeditor": "^3.0.0-alpha.4",
  40. "@jupyterlab/inspector": "^3.0.0-alpha.4",
  41. "@jupyterlab/rendermime": "^3.0.0-alpha.4",
  42. "@jupyterlab/settingregistry": "^3.0.0-alpha.4",
  43. "@jupyterlab/statedb": "^3.0.0-alpha.4",
  44. "@jupyterlab/ui-components": "^3.0.0-alpha.4",
  45. "@lumino/commands": "^1.10.1",
  46. "@lumino/coreutils": "^1.4.3",
  47. "@lumino/messaging": "^1.3.3",
  48. "@lumino/signaling": "^1.3.5",
  49. "@lumino/widgets": "^1.11.1",
  50. "react": "~16.9.0",
  51. "react-dom": "~16.9.0"
  52. },
  53. "devDependencies": {
  54. "@types/react": "~16.9.16",
  55. "@types/react-dom": "~16.9.4",
  56. "rimraf": "~3.0.0",
  57. "typedoc": "^0.17.7",
  58. "typescript": "~3.9.2"
  59. },
  60. "publishConfig": {
  61. "access": "public"
  62. }
  63. }