package.json 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. {
  2. "name": "@jupyterlab/hub-extension",
  3. "version": "3.0.0-alpha.4",
  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. "files": [
  16. "lib/**/*.{d.ts,eot,gif,html,jpg,js,js.map,json,png,svg,woff2,ttf}",
  17. "schema/*.json",
  18. "style/**/*.{css,eot,gif,html,jpg,json,png,svg,woff2,ttf}"
  19. ],
  20. "sideEffects": [
  21. "style/**/*"
  22. ],
  23. "main": "lib/index.js",
  24. "types": "lib/index.d.ts",
  25. "style": "style/index.css",
  26. "directories": {
  27. "lib": "lib/"
  28. },
  29. "scripts": {
  30. "build": "tsc",
  31. "clean": "rimraf lib && rimraf tsconfig.tsbuildinfo",
  32. "prepublishOnly": "npm run build",
  33. "watch": "tsc -w --listEmittedFiles"
  34. },
  35. "dependencies": {
  36. "@jupyterlab/application": "^3.0.0-alpha.4",
  37. "@jupyterlab/apputils": "^3.0.0-alpha.4",
  38. "@jupyterlab/coreutils": "^5.0.0-alpha.4",
  39. "@jupyterlab/mainmenu": "^3.0.0-alpha.4",
  40. "@jupyterlab/services": "^6.0.0-alpha.4"
  41. },
  42. "devDependencies": {
  43. "rimraf": "~3.0.0",
  44. "typescript": "~3.9.2"
  45. },
  46. "publishConfig": {
  47. "access": "public"
  48. },
  49. "jupyterlab": {
  50. "extension": true
  51. }
  52. }