package.json 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. {
  2. "name": "@jupyterlab/htmlviewer-extension",
  3. "version": "3.0.0-rc.15",
  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. "style/**/*.{css,eot,gif,html,jpg,json,png,svg,woff2,ttf}",
  28. "style/index.js"
  29. ],
  30. "scripts": {
  31. "build": "tsc -b",
  32. "clean": "rimraf lib && rimraf tsconfig.tsbuildinfo",
  33. "prepublishOnly": "npm run build",
  34. "watch": "tsc -w"
  35. },
  36. "dependencies": {
  37. "@jupyterlab/application": "^3.0.0-rc.15",
  38. "@jupyterlab/apputils": "^3.0.0-rc.15",
  39. "@jupyterlab/docregistry": "^3.0.0-rc.15",
  40. "@jupyterlab/htmlviewer": "^3.0.0-rc.15",
  41. "@jupyterlab/translation": "^3.0.0-rc.15",
  42. "@jupyterlab/ui-components": "^3.0.0-rc.15"
  43. },
  44. "devDependencies": {
  45. "rimraf": "~3.0.0",
  46. "typescript": "~4.1.3"
  47. },
  48. "publishConfig": {
  49. "access": "public"
  50. },
  51. "jupyterlab": {
  52. "extension": true
  53. },
  54. "styleModule": "style/index.js"
  55. }