package.json 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. {
  2. "name": "@jupyterlab/toc-extension",
  3. "version": "5.0.0-rc.15",
  4. "description": "JupyterLab - Table of Contents widget extension",
  5. "keywords": [
  6. "jupyter",
  7. "jupyterlab",
  8. "jupyterlab-extension"
  9. ],
  10. "homepage": "https://github.com/jupyterlab/jupyterlab",
  11. "bugs": {
  12. "url": "https://github.com/jupyterlab/jupyterlab/issues"
  13. },
  14. "repository": {
  15. "type": "git",
  16. "url": "https://github.com/jupyterlab/jupyterlab.git"
  17. },
  18. "license": "BSD-3-Clause",
  19. "author": "Project Jupyter",
  20. "sideEffects": [
  21. "style/*.css",
  22. "style/index.js"
  23. ],
  24. "main": "lib/index.js",
  25. "types": "lib/index.d.ts",
  26. "style": "style/index.css",
  27. "files": [
  28. "lib/**/*.{d.ts,eot,gif,html,jpg,js,js.map,json,png,svg,woff2,ttf}",
  29. "style/**/*.{css,eot,gif,html,jpg,json,png,svg,woff2,ttf}",
  30. "style/index.js"
  31. ],
  32. "scripts": {
  33. "build": "tsc -b",
  34. "clean": "rimraf lib",
  35. "precommit": "lint-staged",
  36. "prepublishOnly": "npm run build",
  37. "watch": "tsc -w"
  38. },
  39. "dependencies": {
  40. "@jupyterlab/application": "^3.0.0-rc.15",
  41. "@jupyterlab/docmanager": "^3.0.0-rc.15",
  42. "@jupyterlab/fileeditor": "^3.0.0-rc.15",
  43. "@jupyterlab/markdownviewer": "^3.0.0-rc.15",
  44. "@jupyterlab/notebook": "^3.0.0-rc.15",
  45. "@jupyterlab/rendermime": "^3.0.0-rc.15",
  46. "@jupyterlab/toc": "^5.0.0-rc.15",
  47. "@jupyterlab/translation": "^3.0.0-rc.15",
  48. "@jupyterlab/ui-components": "^3.0.0-rc.15"
  49. },
  50. "devDependencies": {
  51. "rimraf": "~3.0.0",
  52. "typescript": "~4.1.3"
  53. },
  54. "publishConfig": {
  55. "access": "public"
  56. },
  57. "jupyterlab": {
  58. "extension": true
  59. },
  60. "styleModule": "style/index.js"
  61. }