package.json 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. {
  2. "name": "@jupyterlab/statedb",
  3. "version": "2.0.0-alpha.4",
  4. "description": "Package for managing state in 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",
  30. "prepublishOnly": "npm run build",
  31. "watch": "tsc -b -w --listEmittedFiles"
  32. },
  33. "dependencies": {
  34. "@lumino/commands": "^1.9.0",
  35. "@lumino/coreutils": "^1.4.0",
  36. "@lumino/disposable": "^1.3.2",
  37. "@lumino/properties": "^1.1.4",
  38. "@lumino/signaling": "^1.3.2"
  39. },
  40. "devDependencies": {
  41. "rimraf": "~3.0.0",
  42. "typedoc": "^0.15.4",
  43. "typescript": "~3.7.3"
  44. },
  45. "publishConfig": {
  46. "access": "public"
  47. }
  48. }