package.json 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. {
  2. "name": "@jupyterlab/hub-extension",
  3. "version": "3.0.0-rc.15",
  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. ],
  30. "scripts": {
  31. "build": "tsc",
  32. "clean": "rimraf lib && rimraf tsconfig.tsbuildinfo",
  33. "prepublishOnly": "npm run build",
  34. "watch": "tsc -w --listEmittedFiles"
  35. },
  36. "dependencies": {
  37. "@jupyterlab/application": "^3.0.0-rc.15",
  38. "@jupyterlab/apputils": "^3.0.0-rc.15",
  39. "@jupyterlab/coreutils": "^5.0.0-rc.15",
  40. "@jupyterlab/mainmenu": "^3.0.0-rc.15",
  41. "@jupyterlab/services": "^6.0.0-rc.15",
  42. "@jupyterlab/translation": "^3.0.0-rc.15"
  43. },
  44. "devDependencies": {
  45. "rimraf": "~3.0.0",
  46. "typescript": "~4.1.3"
  47. },
  48. "publishConfig": {
  49. "access": "public"
  50. },
  51. "jupyterlab": {
  52. "extension": true
  53. },
  54. "styleModule": "style/index.js"
  55. }