package.json 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. {
  2. "name": "@jupyterlab/launcher",
  3. "version": "2.1.0",
  4. "description": "JupyterLab - Launcher Panel",
  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 && rimraf tsconfig.tsbuildinfo",
  33. "docs": "typedoc src",
  34. "prepublishOnly": "npm run build",
  35. "watch": "tsc -b --watch"
  36. },
  37. "dependencies": {
  38. "@jupyterlab/apputils": "^2.1.0",
  39. "@jupyterlab/ui-components": "^2.1.0",
  40. "@lumino/algorithm": "^1.2.3",
  41. "@lumino/commands": "^1.10.1",
  42. "@lumino/coreutils": "^1.4.2",
  43. "@lumino/disposable": "^1.3.5",
  44. "@lumino/properties": "^1.1.6",
  45. "@lumino/widgets": "^1.11.1",
  46. "react": "~16.9.0"
  47. },
  48. "devDependencies": {
  49. "@types/react": "~16.9.16",
  50. "rimraf": "~3.0.0",
  51. "typedoc": "^0.15.4",
  52. "typescript": "~3.7.3"
  53. },
  54. "publishConfig": {
  55. "access": "public"
  56. }
  57. }