package.json 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. {
  2. "name": "@jupyterlab/mathjax2",
  3. "version": "3.2.8",
  4. "description": "A MathJax 2 Typesetting provider for JupyterLab",
  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. "style/**/*.{css,eot,gif,html,jpg,json,png,svg,woff2,ttf}",
  27. "style/index.js"
  28. ],
  29. "scripts": {
  30. "build": "tsc -b",
  31. "clean": "rimraf lib && rimraf tsconfig.tsbuildinfo",
  32. "docs": "typedoc src",
  33. "watch": "tsc -b --watch"
  34. },
  35. "dependencies": {
  36. "@jupyterlab/rendermime-interfaces": "^3.2.8",
  37. "@lumino/coreutils": "^1.5.3"
  38. },
  39. "devDependencies": {
  40. "rimraf": "~3.0.0",
  41. "typedoc": "~0.21.2",
  42. "typescript": "~4.1.3"
  43. },
  44. "publishConfig": {
  45. "access": "public"
  46. },
  47. "styleModule": "style/index.js"
  48. }