package.json 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. {
  2. "name": "@jupyterlab/shortcuts-extension",
  3. "version": "3.0.0-alpha.7",
  4. "description": "JupyterLab - Shortcuts 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. ],
  21. "sideEffects": false,
  22. "main": "lib/index.js",
  23. "types": "lib/index.d.ts",
  24. "directories": {
  25. "lib": "lib/"
  26. },
  27. "scripts": {
  28. "build": "tsc -b",
  29. "clean": "rimraf lib && rimraf tsconfig.tsbuildinfo",
  30. "docs": "typedoc src",
  31. "prepublishOnly": "npm run build",
  32. "watch": "tsc -b --watch"
  33. },
  34. "dependencies": {
  35. "@jupyterlab/application": "^3.0.0-alpha.7",
  36. "@jupyterlab/settingregistry": "^3.0.0-alpha.7",
  37. "@lumino/commands": "^1.10.1",
  38. "@lumino/coreutils": "^1.4.3",
  39. "@lumino/disposable": "^1.3.5"
  40. },
  41. "devDependencies": {
  42. "rimraf": "~3.0.0",
  43. "typedoc": "^0.17.7",
  44. "typescript": "~3.9.2"
  45. },
  46. "publishConfig": {
  47. "access": "public"
  48. },
  49. "jupyterlab": {
  50. "extension": true,
  51. "schemaDir": "schema"
  52. }
  53. }