package.json.orig 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. {
  2. "name": "@jupyterlab/cell-toolbar-extension",
  3. "version": "4.5.6",
  4. "description": "Extension for cell toolbar adapted from jlab-enhanced-cell-toolbar",
  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. "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,eot,gif,html,jpg,js,js.map,json,png,svg,woff2,ttf}",
  26. "schema/*.json",
  27. "style/**/*.{css,eot,gif,html,jpg,json,png,svg,woff2,ttf}",
  28. "style/index.js",
  29. "src/**/*.{ts,tsx}"
  30. ],
  31. "scripts": {
  32. "build": "tsc -b",
  33. "clean": "rimraf lib && rimraf tsconfig.tsbuildinfo",
  34. "watch": "tsc -b --watch"
  35. },
  36. "dependencies": {
  37. "@jupyterlab/application": "^4.5.6",
  38. "@jupyterlab/apputils": "^4.6.6",
  39. "@jupyterlab/cell-toolbar": "^4.5.6",
  40. "@jupyterlab/settingregistry": "^4.5.6",
  41. "@jupyterlab/translation": "^4.5.6"
  42. },
  43. "devDependencies": {
  44. "rimraf": "~5.0.5",
  45. "typescript": "~5.5.4"
  46. },
  47. "publishConfig": {
  48. "access": "public"
  49. },
  50. "jupyterlab": {
  51. "extension": true,
  52. "schemaDir": "schema"
  53. },
  54. "styleModule": "style/index.js"
  55. }