package.json 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. {
  2. "name": "@jupyterlab/settingregistry",
  3. "version": "2.1.0",
  4. "description": "Settings registry for Jupyterlab",
  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,eot,gif,html,jpg,js,js.map,json,png,svg,woff2,ttf}",
  17. "schema/*.json",
  18. "style/**/*.{css,eot,gif,html,jpg,json,png,svg,woff2,ttf}"
  19. ],
  20. "sideEffects": false,
  21. "main": "lib/index.js",
  22. "types": "lib/index.d.ts",
  23. "directories": {
  24. "lib": "lib/"
  25. },
  26. "scripts": {
  27. "build": "tsc -b",
  28. "clean": "rimraf lib && rimraf tsconfig.tsbuildinfo",
  29. "docs": "typedoc src --tsconfig typedoc-tsconfig.json",
  30. "prepublishOnly": "npm run build",
  31. "watch": "tsc -b -w --listEmittedFiles"
  32. },
  33. "dependencies": {
  34. "@jupyterlab/statedb": "^2.1.0",
  35. "@lumino/commands": "^1.10.1",
  36. "@lumino/coreutils": "^1.4.2",
  37. "@lumino/disposable": "^1.3.5",
  38. "@lumino/signaling": "^1.3.5",
  39. "ajv": "^6.10.2",
  40. "json5": "^2.1.1"
  41. },
  42. "devDependencies": {
  43. "@types/json5": "^0.0.30",
  44. "rimraf": "~3.0.0",
  45. "typescript": "~3.7.3"
  46. },
  47. "publishConfig": {
  48. "access": "public"
  49. }
  50. }