package.json.orig 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. {
  2. "name": "@jupyterlab/hub-extension",
  3. "version": "4.5.6",
  4. "description": "JupyterLab integration for JupyterHub",
  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,eot,gif,html,jpg,js,js.map,json,png,svg,woff2,ttf}",
  26. "schema/*.json",
  27. "style/**/*.{css,eot,gif,html,jpg,json,png,svg,woff2,ttf}",
  28. "style/index.js",
  29. "src/**/*.{ts,tsx}"
  30. ],
  31. "scripts": {
  32. "build": "tsc",
  33. "build:test": "tsc --build tsconfig.test.json",
  34. "clean": "rimraf lib && rimraf tsconfig.tsbuildinfo",
  35. "test": "jest",
  36. "test:cov": "jest --collect-coverage",
  37. "test:debug": "node --inspect-brk ../../node_modules/.bin/jest --runInBand",
  38. "test:debug:watch": "node --inspect-brk ../../node_modules/.bin/jest --runInBand --watch",
  39. "watch": "tsc -w --listEmittedFiles"
  40. },
  41. "dependencies": {
  42. "@jupyterlab/application": "^4.5.6",
  43. "@jupyterlab/apputils": "^4.6.6",
  44. "@jupyterlab/coreutils": "^6.5.6",
  45. "@jupyterlab/services": "^7.5.6",
  46. "@jupyterlab/translation": "^4.5.6"
  47. },
  48. "devDependencies": {
  49. "@types/jest": "^29.2.0",
  50. "jest": "^29.2.0",
  51. "rimraf": "~5.0.5",
  52. "typescript": "~5.5.4"
  53. },
  54. "publishConfig": {
  55. "access": "public"
  56. },
  57. "jupyterlab": {
  58. "extension": true,
  59. "schemaDir": "schema"
  60. },
  61. "styleModule": "style/index.js"
  62. }