package.json 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. {
  2. "name": "@jupyterlab/shortcuts-extension",
  3. "version": "3.4.3",
  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. "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,eot,gif,html,jpg,js,js.map,json,png,svg,woff2,ttf}",
  27. "style/**/*.{css,eot,gif,html,jpg,json,png,svg,woff2,ttf}",
  28. "style/index.js",
  29. "schema/*.json"
  30. ],
  31. "scripts": {
  32. "build": "tsc -b",
  33. "build:test": "tsc --build tsconfig.test.json",
  34. "clean": "rimraf lib && rimraf tsconfig.tsbuildinfo",
  35. "docs": "typedoc src",
  36. "test": "jest",
  37. "test:cov": "jest --collect-coverage",
  38. "test:debug": "node --inspect-brk node_modules/.bin/jest --runInBand",
  39. "test:debug:watch": "node --inspect-brk node_modules/.bin/jest --runInBand --watch",
  40. "watch": "tsc -b --watch"
  41. },
  42. "dependencies": {
  43. "@jupyterlab/application": "^3.4.3",
  44. "@jupyterlab/settingregistry": "^3.4.3",
  45. "@jupyterlab/translation": "^3.4.3",
  46. "@jupyterlab/ui-components": "^3.4.3",
  47. "@lumino/algorithm": "^1.9.0",
  48. "@lumino/commands": "^1.19.0",
  49. "@lumino/coreutils": "^1.11.0",
  50. "@lumino/disposable": "^1.10.0",
  51. "@lumino/domutils": "^1.8.0",
  52. "@lumino/keyboard": "^1.8.1",
  53. "@lumino/widgets": "^1.30.0",
  54. "react": "^17.0.1",
  55. "typestyle": "^2.0.4"
  56. },
  57. "devDependencies": {
  58. "@jupyterlab/testutils": "^3.4.3",
  59. "@types/jest": "^26.0.10",
  60. "jest": "^26.4.2",
  61. "rimraf": "~3.0.0",
  62. "ts-jest": "^26.3.0",
  63. "typedoc": "~0.21.2",
  64. "typescript": "~4.1.3"
  65. },
  66. "publishConfig": {
  67. "access": "public"
  68. },
  69. "jupyterlab": {
  70. "extension": true,
  71. "schemaDir": "schema"
  72. },
  73. "styleModule": "style/index.js"
  74. }