package.json.orig 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. {
  2. "name": "@jupyterlab/statusbar-extension",
  3. "version": "4.5.6",
  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. "src/**/*.{ts,tsx}"
  32. ],
  33. "scripts": {
  34. "build": "tsc -b",
  35. "clean": "rimraf lib && rimraf tsconfig.tsbuildinfo",
  36. "watch": "tsc -b --watch"
  37. },
  38. "dependencies": {
  39. "@jupyterlab/application": "^4.5.6",
  40. "@jupyterlab/apputils": "^4.6.6",
  41. "@jupyterlab/settingregistry": "^4.5.6",
  42. "@jupyterlab/statusbar": "^4.5.6",
  43. "@jupyterlab/translation": "^4.5.6"
  44. },
  45. "devDependencies": {
  46. "@types/react": "^18.0.26",
  47. "@types/react-dom": "^18.0.9",
  48. "rimraf": "~5.0.5",
  49. "typescript": "~5.5.4"
  50. },
  51. "publishConfig": {
  52. "access": "public"
  53. },
  54. "jupyterlab": {
  55. "extension": true,
  56. "schemaDir": "schema"
  57. },
  58. "styleModule": "style/index.js"
  59. }