package.json 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. {
  2. "name": "@jupyterlab/settingeditor",
  3. "version": "3.0.0-rc.15",
  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. "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. "style/*.css",
  30. "style/index.js"
  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/apputils": "^3.0.0-rc.15",
  41. "@jupyterlab/codeeditor": "^3.0.0-rc.15",
  42. "@jupyterlab/inspector": "^3.0.0-rc.15",
  43. "@jupyterlab/rendermime": "^3.0.0-rc.15",
  44. "@jupyterlab/settingregistry": "^3.0.0-rc.15",
  45. "@jupyterlab/statedb": "^3.0.0-rc.15",
  46. "@jupyterlab/translation": "^3.0.0-rc.15",
  47. "@jupyterlab/ui-components": "^3.0.0-rc.15",
  48. "@lumino/commands": "^1.12.0",
  49. "@lumino/coreutils": "^1.5.3",
  50. "@lumino/messaging": "^1.4.3",
  51. "@lumino/signaling": "^1.4.3",
  52. "@lumino/widgets": "^1.16.1",
  53. "react": "^17.0.1",
  54. "react-dom": "^17.0.1"
  55. },
  56. "devDependencies": {
  57. "@types/react": "^17.0.0",
  58. "@types/react-dom": "^17.0.0",
  59. "rimraf": "~3.0.0",
  60. "typedoc": "~0.20.0-beta.27",
  61. "typescript": "~4.1.3"
  62. },
  63. "publishConfig": {
  64. "access": "public"
  65. },
  66. "styleModule": "style/index.js"
  67. }