package.json 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. {
  2. "name": "@jupyterlab/htmlviewer-extension",
  3. "version": "3.0.0-alpha.4",
  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. "files": [
  20. "lib/**/*.{d.ts,eot,gif,html,jpg,js,js.map,json,png,svg,woff2,ttf}",
  21. "style/**/*.{css,eot,gif,html,jpg,json,png,svg,woff2,ttf}"
  22. ],
  23. "sideEffects": [
  24. "style/**/*"
  25. ],
  26. "main": "lib/index.js",
  27. "types": "lib/index.d.ts",
  28. "style": "style/index.css",
  29. "scripts": {
  30. "build": "tsc -b",
  31. "clean": "rimraf lib && rimraf tsconfig.tsbuildinfo",
  32. "prepublishOnly": "npm run build",
  33. "watch": "tsc -w"
  34. },
  35. "dependencies": {
  36. "@jupyterlab/application": "^3.0.0-alpha.4",
  37. "@jupyterlab/apputils": "^3.0.0-alpha.4",
  38. "@jupyterlab/docregistry": "^3.0.0-alpha.4",
  39. "@jupyterlab/htmlviewer": "^3.0.0-alpha.4",
  40. "@jupyterlab/ui-components": "^3.0.0-alpha.4"
  41. },
  42. "devDependencies": {
  43. "rimraf": "~3.0.0",
  44. "typescript": "~3.9.2"
  45. },
  46. "publishConfig": {
  47. "access": "public"
  48. },
  49. "jupyterlab": {
  50. "extension": true
  51. }
  52. }