package.json 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. {
  2. "name": "@jupyterlab/filebrowser-extension",
  3. "version": "2.1.0",
  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. "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. "schema/*.json",
  20. "style/**/*.css"
  21. ],
  22. "sideEffects": [
  23. "style/**/*.css"
  24. ],
  25. "main": "lib/index.js",
  26. "types": "lib/index.d.ts",
  27. "style": "style/index.css",
  28. "directories": {
  29. "lib": "lib/"
  30. },
  31. "scripts": {
  32. "build": "tsc -b",
  33. "clean": "rimraf lib && rimraf tsconfig.tsbuildinfo",
  34. "docs": "typedoc src",
  35. "prepublishOnly": "npm run build",
  36. "watch": "tsc -b --watch"
  37. },
  38. "dependencies": {
  39. "@jupyterlab/application": "^2.1.0",
  40. "@jupyterlab/apputils": "^2.1.0",
  41. "@jupyterlab/coreutils": "^4.1.0",
  42. "@jupyterlab/docmanager": "^2.1.0",
  43. "@jupyterlab/filebrowser": "^2.1.0",
  44. "@jupyterlab/launcher": "^2.1.0",
  45. "@jupyterlab/mainmenu": "^2.1.0",
  46. "@jupyterlab/services": "^5.1.0",
  47. "@jupyterlab/settingregistry": "^2.1.0",
  48. "@jupyterlab/statedb": "^2.1.0",
  49. "@jupyterlab/statusbar": "^2.1.0",
  50. "@jupyterlab/ui-components": "^2.1.0",
  51. "@lumino/algorithm": "^1.2.3",
  52. "@lumino/commands": "^1.10.1",
  53. "@lumino/messaging": "^1.3.3",
  54. "@lumino/widgets": "^1.11.1"
  55. },
  56. "devDependencies": {
  57. "rimraf": "~3.0.0",
  58. "typedoc": "^0.15.4",
  59. "typescript": "~3.7.3"
  60. },
  61. "publishConfig": {
  62. "access": "public"
  63. },
  64. "jupyterlab": {
  65. "extension": true,
  66. "schemaDir": "schema"
  67. }
  68. }