package.json 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. {
  2. "name": "@jupyterlab/toc-extension",
  3. "version": "5.0.0-alpha.4",
  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. "files": [
  21. "lib/**/*.{d.ts,eot,gif,html,jpg,js,js.map,json,png,svg,woff2,ttf}",
  22. "style/**/*.{css,eot,gif,html,jpg,json,png,svg,woff2,ttf}"
  23. ],
  24. "sideEffects": [
  25. "style/*.css"
  26. ],
  27. "main": "lib/index.js",
  28. "types": "lib/index.d.ts",
  29. "style": "style/index.css",
  30. "scripts": {
  31. "build": "tsc -b",
  32. "clean": "rimraf lib",
  33. "precommit": "lint-staged",
  34. "prepublishOnly": "npm run build",
  35. "prettier": "prettier --write '**/*{.ts,.tsx,.js,.jsx,.css,.json,.md}'",
  36. "watch": "tsc -w"
  37. },
  38. "lint-staged": {
  39. "**/*{.ts,.tsx,.css,.json,.md}": [
  40. "prettier --write",
  41. "git add"
  42. ]
  43. },
  44. "dependencies": {
  45. "@jupyterlab/application": "^3.0.0-alpha.4",
  46. "@jupyterlab/docmanager": "^3.0.0-alpha.4",
  47. "@jupyterlab/fileeditor": "^3.0.0-alpha.4",
  48. "@jupyterlab/markdownviewer": "^3.0.0-alpha.4",
  49. "@jupyterlab/notebook": "^3.0.0-alpha.4",
  50. "@jupyterlab/rendermime": "^3.0.0-alpha.4",
  51. "@jupyterlab/toc": "^5.0.0-alpha.4",
  52. "@jupyterlab/ui-components": "^3.0.0-alpha.4"
  53. },
  54. "devDependencies": {
  55. "lint-staged": "^8.2.1",
  56. "prettier": "^1.19.1",
  57. "rimraf": "~3.0.0",
  58. "tslint": "^5.20.1",
  59. "tslint-config-prettier": "^1.18.0",
  60. "tslint-plugin-prettier": "^2.1.0",
  61. "typescript": "~3.9.2"
  62. },
  63. "publishConfig": {
  64. "access": "public"
  65. },
  66. "jupyterlab": {
  67. "extension": true
  68. }
  69. }