package.json 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. {
  2. "name": "@jupyterlab/running-extension",
  3. "version": "2.0.0-alpha.4",
  4. "description": "JupyterLab - Running Sessions 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. "files": [
  16. "lib/*.d.ts",
  17. "lib/*.js.map",
  18. "lib/*.js",
  19. "style/**/*.css"
  20. ],
  21. "sideEffects": [
  22. "style/**/*.css"
  23. ],
  24. "main": "lib/index.js",
  25. "types": "lib/index.d.ts",
  26. "style": "style/index.css",
  27. "directories": {
  28. "lib": "lib/"
  29. },
  30. "scripts": {
  31. "build": "tsc -b",
  32. "clean": "rimraf lib",
  33. "docs": "typedoc src",
  34. "prepublishOnly": "npm run build",
  35. "watch": "tsc -b --watch"
  36. },
  37. "dependencies": {
  38. "@jupyterlab/application": "^2.0.0-alpha.4",
  39. "@jupyterlab/coreutils": "^4.0.0-alpha.4",
  40. "@jupyterlab/running": "^2.0.0-alpha.4",
  41. "@jupyterlab/services": "^5.0.0-alpha.4",
  42. "@lumino/algorithm": "^1.2.1"
  43. },
  44. "devDependencies": {
  45. "rimraf": "~3.0.0",
  46. "typedoc": "^0.15.4",
  47. "typescript": "~3.7.3"
  48. },
  49. "publishConfig": {
  50. "access": "public"
  51. },
  52. "jupyterlab": {
  53. "extension": true
  54. }
  55. }