package.json 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. {
  2. "name": "@jupyterlab/filebrowser-extension",
  3. "version": "0.19.2",
  4. "description": "JupyterLab - Filebrowser Widget Extension",
  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. ],
  16. "main": "lib/index.js",
  17. "types": "lib/index.d.ts",
  18. "directories": {
  19. "lib": "lib/"
  20. },
  21. "repository": {
  22. "type": "git",
  23. "url": "https://github.com/jupyterlab/jupyterlab.git"
  24. },
  25. "scripts": {
  26. "build": "tsc -b",
  27. "clean": "rimraf lib",
  28. "docs": "typedoc --options tdoptions.json --theme ../../typedoc-theme src",
  29. "prepublishOnly": "npm run build",
  30. "watch": "tsc -b --watch"
  31. },
  32. "dependencies": {
  33. "@jupyterlab/application": "^0.19.1",
  34. "@jupyterlab/apputils": "^0.19.1",
  35. "@jupyterlab/coreutils": "^2.2.1",
  36. "@jupyterlab/docmanager": "^0.19.1",
  37. "@jupyterlab/filebrowser": "^0.19.3",
  38. "@jupyterlab/launcher": "^0.19.1",
  39. "@jupyterlab/services": "^3.2.1",
  40. "@jupyterlab/statusbar": "^0.7.1",
  41. "@phosphor/algorithm": "^1.1.2",
  42. "@phosphor/commands": "^1.6.1",
  43. "@phosphor/messaging": "^1.2.2",
  44. "@phosphor/widgets": "^1.6.0"
  45. },
  46. "devDependencies": {
  47. "rimraf": "~2.6.2",
  48. "typedoc": "~0.12.0",
  49. "typescript": "~3.1.1"
  50. },
  51. "publishConfig": {
  52. "access": "public"
  53. },
  54. "jupyterlab": {
  55. "extension": true,
  56. "schemaDir": "schema"
  57. }
  58. }