package.json 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. {
  2. "name": "@jupyterlab/statusbar-extension",
  3. "version": "3.4.3",
  4. "description": "JupyterLab - Statusbar 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, Richa Gadgil, Takahiro Shimokobe, Declan Kelly",
  15. "sideEffects": [
  16. "style/**/*"
  17. ],
  18. "main": "lib/index.js",
  19. "types": "lib/index.d.ts",
  20. "style": "style/index.css",
  21. "directories": {
  22. "lib": "lib/"
  23. },
  24. "files": [
  25. "lib/**/*.d.ts",
  26. "lib/**/*.js.map",
  27. "lib/**/*.js",
  28. "style/**/*.{css,eot,gif,html,jpg,json,png,svg,woff2,ttf}",
  29. "schema/*.json",
  30. "style/index.js"
  31. ],
  32. "scripts": {
  33. "build": "tsc -b",
  34. "clean": "rimraf lib && rimraf tsconfig.tsbuildinfo",
  35. "docs": "typedoc src",
  36. "watch": "tsc -b --watch"
  37. },
  38. "dependencies": {
  39. "@jupyterlab/application": "^3.4.3",
  40. "@jupyterlab/apputils": "^3.4.3",
  41. "@jupyterlab/cells": "^3.4.3",
  42. "@jupyterlab/console": "^3.4.3",
  43. "@jupyterlab/docregistry": "^3.4.3",
  44. "@jupyterlab/fileeditor": "^3.4.3",
  45. "@jupyterlab/notebook": "^3.4.3",
  46. "@jupyterlab/settingregistry": "^3.4.3",
  47. "@jupyterlab/statusbar": "^3.4.3",
  48. "@jupyterlab/translation": "^3.4.3",
  49. "@jupyterlab/ui-components": "^3.4.3",
  50. "@lumino/commands": "^1.19.0",
  51. "@lumino/widgets": "^1.30.0"
  52. },
  53. "devDependencies": {
  54. "@types/react": "^17.0.0",
  55. "@types/react-dom": "^17.0.0",
  56. "rimraf": "~3.0.0",
  57. "typedoc": "~0.21.2",
  58. "typescript": "~4.1.3"
  59. },
  60. "publishConfig": {
  61. "access": "public"
  62. },
  63. "jupyterlab": {
  64. "extension": true,
  65. "schemaDir": "schema"
  66. },
  67. "styleModule": "style/index.js"
  68. }