package.json 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. {
  2. "name": "@jupyterlab/htmlviewer",
  3. "version": "3.2.8",
  4. "description": "A viewer for HTML documents.",
  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. "watch": "tsc -w --listEmittedFiles"
  33. },
  34. "dependencies": {
  35. "@jupyterlab/apputils": "^3.2.8",
  36. "@jupyterlab/coreutils": "^5.2.8",
  37. "@jupyterlab/docregistry": "^3.2.8",
  38. "@jupyterlab/translation": "^3.2.8",
  39. "@jupyterlab/ui-components": "^3.2.8",
  40. "@lumino/coreutils": "^1.5.3",
  41. "@lumino/signaling": "^1.4.3",
  42. "react": "^17.0.1"
  43. },
  44. "devDependencies": {
  45. "rimraf": "~3.0.0",
  46. "typescript": "~4.1.3"
  47. },
  48. "publishConfig": {
  49. "access": "public"
  50. },
  51. "styleModule": "style/index.js"
  52. }