package.json.orig 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. {
  2. "name": "@jupyterlab/htmlviewer-extension",
  3. "version": "4.5.6",
  4. "description": "JupyterLab extension to render HTML files",
  5. "keywords": [
  6. "jupyter",
  7. "jupyterlab"
  8. ],
  9. "homepage": "https://github.com/jupyterlab/jupyterlab",
  10. "bugs": {
  11. "url": "https://github.com/jupyterlab/jupyterlab"
  12. },
  13. "repository": {
  14. "type": "git",
  15. "url": "https://github.com/jupyterlab/jupyterlab.git"
  16. },
  17. "license": "BSD-3-Clause",
  18. "author": "Project Jupyter Contributors",
  19. "sideEffects": [
  20. "style/**/*"
  21. ],
  22. "main": "lib/index.js",
  23. "types": "lib/index.d.ts",
  24. "style": "style/index.css",
  25. "files": [
  26. "lib/**/*.{d.ts,eot,gif,html,jpg,js,js.map,json,png,svg,woff2,ttf}",
  27. "schema/*.json",
  28. "style/**/*.{css,eot,gif,html,jpg,json,png,svg,woff2,ttf}",
  29. "style/index.js",
  30. "src/**/*.{ts,tsx}"
  31. ],
  32. "scripts": {
  33. "build": "tsc -b",
  34. "clean": "rimraf lib && rimraf tsconfig.tsbuildinfo",
  35. "watch": "tsc -w"
  36. },
  37. "dependencies": {
  38. "@jupyterlab/application": "^4.5.6",
  39. "@jupyterlab/apputils": "^4.6.6",
  40. "@jupyterlab/docregistry": "^4.5.6",
  41. "@jupyterlab/htmlviewer": "^4.5.6",
  42. "@jupyterlab/observables": "^5.5.6",
  43. "@jupyterlab/settingregistry": "^4.5.6",
  44. "@jupyterlab/translation": "^4.5.6",
  45. "@jupyterlab/ui-components": "^4.5.6"
  46. },
  47. "devDependencies": {
  48. "rimraf": "~5.0.5",
  49. "typescript": "~5.5.4"
  50. },
  51. "publishConfig": {
  52. "access": "public"
  53. },
  54. "jupyterlab": {
  55. "extension": true,
  56. "schemaDir": "schema"
  57. },
  58. "styleModule": "style/index.js"
  59. }