package.json 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. {
  2. "name": "@jupyterlab/launcher",
  3. "version": "0.11.1",
  4. "description": "JupyterLab - Launcher Panel",
  5. "homepage": "https://github.com/jupyterlab/jupyterlab",
  6. "bugs": {
  7. "url": "https://github.com/jupyterlab/jupyterlab/issues"
  8. },
  9. "license": "BSD-3-Clause",
  10. "author": "Project Jupyter",
  11. "files": [
  12. "lib/*.d.ts",
  13. "lib/*.js.map",
  14. "lib/*.js",
  15. "style/*.css"
  16. ],
  17. "main": "lib/index.js",
  18. "types": "lib/index.d.ts",
  19. "directories": {
  20. "lib": "lib/"
  21. },
  22. "repository": {
  23. "type": "git",
  24. "url": "https://github.com/jupyterlab/jupyterlab.git"
  25. },
  26. "scripts": {
  27. "build": "tsc",
  28. "clean": "rimraf lib",
  29. "watch": "tsc -w"
  30. },
  31. "dependencies": {
  32. "@jupyterlab/apputils": "^0.11.1",
  33. "@phosphor/algorithm": "^1.1.1",
  34. "@phosphor/coreutils": "^1.2.0",
  35. "@phosphor/disposable": "^1.1.1",
  36. "@phosphor/messaging": "^1.2.1",
  37. "@phosphor/properties": "^1.1.1",
  38. "@phosphor/widgets": "^1.3.0",
  39. "react": "~16.0.0"
  40. },
  41. "devDependencies": {
  42. "@types/react": "~16.0.18",
  43. "rimraf": "^2.5.2",
  44. "typescript": "~2.4.1"
  45. }
  46. }