package.json.orig 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. {
  2. "name": "@jupyterlab/mathjax-extension",
  3. "version": "4.5.6",
  4. "description": "A JupyterLab extension providing MathJax Typesetting",
  5. "keywords": [
  6. "jupyter",
  7. "jupyterlab",
  8. "mathjax"
  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": {
  20. "name": "Project Jupyter",
  21. "email": "jupyter@googlegroups.com"
  22. },
  23. "sideEffects": [
  24. "style/**/*"
  25. ],
  26. "main": "lib/index.js",
  27. "types": "lib/index.d.ts",
  28. "style": "style/index.css",
  29. "directories": {
  30. "lib": "lib/"
  31. },
  32. "files": [
  33. "lib/**/*.{d.ts,eot,gif,html,jpg,js,js.map,json,png,svg,woff2,ttf}",
  34. "style/**/*.{css,eot,gif,html,jpg,json,png,svg,woff2,ttf}",
  35. "schema/*.json",
  36. "style/index.js",
  37. "src/**/*.{ts,tsx}"
  38. ],
  39. "scripts": {
  40. "build": "tsc -b",
  41. "build:test": "tsc --build tsconfig.test.json",
  42. "clean": "rimraf lib && rimraf tsconfig.tsbuildinfo",
  43. "eslint": "eslint . --ext .ts,.tsx --fix",
  44. "test": "jest",
  45. "test:cov": "jest --collect-coverage",
  46. "test:debug": "node --inspect-brk ../../node_modules/.bin/jest --runInBand",
  47. "test:debug:watch": "node --inspect-brk ../../node_modules/.bin/jest --runInBand --watch",
  48. "watch": "tsc -b --watch"
  49. },
  50. "dependencies": {
  51. "@jupyterlab/application": "^4.5.6",
  52. "@jupyterlab/rendermime": "^4.5.6",
  53. "@jupyterlab/translation": "^4.5.6",
  54. "@lumino/coreutils": "^2.2.2",
  55. "mathjax-full": "^3.2.2"
  56. },
  57. "devDependencies": {
  58. "@jupyterlab/testing": "^4.5.6",
  59. "@types/jest": "^29.2.0",
  60. "jest": "^29.2.0",
  61. "rimraf": "~5.0.5",
  62. "typescript": "~5.5.4"
  63. },
  64. "publishConfig": {
  65. "access": "public"
  66. },
  67. "jupyterlab": {
  68. "extension": true,
  69. "schemaDir": "schema"
  70. },
  71. "styleModule": "style/index.js"
  72. }