package.json 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. {
  2. "name": "@jupyterlab/notebook",
  3. "version": "3.4.3",
  4. "description": "JupyterLab - Notebook",
  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/**/*"
  17. ],
  18. "main": "lib/index.js",
  19. "types": "lib/index.d.ts",
  20. "style": "style/index.css",
  21. "directories": {
  22. "lib": "lib/"
  23. },
  24. "files": [
  25. "lib/*.d.ts",
  26. "lib/*.js.map",
  27. "lib/*.js",
  28. "style/**/*.{css,eot,gif,html,jpg,json,png,svg,woff2,ttf}",
  29. "style/index.js"
  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. "test:watch": "jest --runInBand --watch",
  41. "watch": "tsc -b --watch"
  42. },
  43. "dependencies": {
  44. "@jupyterlab/apputils": "^3.4.3",
  45. "@jupyterlab/cells": "^3.4.3",
  46. "@jupyterlab/codeeditor": "^3.4.3",
  47. "@jupyterlab/coreutils": "^5.4.3",
  48. "@jupyterlab/docregistry": "^3.4.3",
  49. "@jupyterlab/nbformat": "^3.4.3",
  50. "@jupyterlab/observables": "^4.4.3",
  51. "@jupyterlab/rendermime": "^3.4.3",
  52. "@jupyterlab/services": "^6.4.3",
  53. "@jupyterlab/settingregistry": "^3.4.3",
  54. "@jupyterlab/shared-models": "^3.4.3",
  55. "@jupyterlab/statusbar": "^3.4.3",
  56. "@jupyterlab/translation": "^3.4.3",
  57. "@jupyterlab/ui-components": "^3.4.3",
  58. "@lumino/algorithm": "^1.9.0",
  59. "@lumino/coreutils": "^1.11.0",
  60. "@lumino/domutils": "^1.8.0",
  61. "@lumino/dragdrop": "^1.13.0",
  62. "@lumino/messaging": "^1.10.0",
  63. "@lumino/properties": "^1.8.0",
  64. "@lumino/signaling": "^1.10.0",
  65. "@lumino/virtualdom": "^1.14.0",
  66. "@lumino/widgets": "^1.30.0",
  67. "react": "^17.0.1"
  68. },
  69. "devDependencies": {
  70. "@jupyterlab/testutils": "^3.4.3",
  71. "@types/jest": "^26.0.10",
  72. "jest": "^26.4.2",
  73. "rimraf": "~3.0.0",
  74. "ts-jest": "^26.3.0",
  75. "typedoc": "~0.21.2",
  76. "typescript": "~4.1.3"
  77. },
  78. "publishConfig": {
  79. "access": "public"
  80. },
  81. "styleModule": "style/index.js"
  82. }