package.json 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. {
  2. "name": "@jupyterlab/vdom",
  3. "version": "3.1.0-beta.0",
  4. "description": "A viewer for VDOM 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,js,js.map}",
  26. "style/*"
  27. ],
  28. "scripts": {
  29. "build": "tsc -b",
  30. "clean": "rimraf lib && rimraf tsconfig.tsbuildinfo",
  31. "docs": "typedoc src",
  32. "prepublishOnly": "npm run build",
  33. "watch": "tsc -b --watch"
  34. },
  35. "dependencies": {
  36. "@jupyterlab/apputils": "^3.1.0-beta.0",
  37. "@jupyterlab/docregistry": "^3.1.0-beta.0",
  38. "@jupyterlab/rendermime-interfaces": "^3.1.0-beta.0",
  39. "@jupyterlab/services": "^6.1.0-beta.0",
  40. "@lumino/coreutils": "^1.5.3",
  41. "@lumino/messaging": "^1.4.3",
  42. "@lumino/widgets": "^1.19.0",
  43. "@nteract/transform-vdom": "^4.0.16-alpha.0",
  44. "react": "^17.0.1",
  45. "react-dom": "^17.0.1"
  46. },
  47. "devDependencies": {
  48. "@types/react": "^17.0.0",
  49. "@types/react-dom": "^17.0.0",
  50. "rimraf": "~3.0.0",
  51. "typedoc": "~0.20.0-beta.27",
  52. "typescript": "~4.1.3"
  53. },
  54. "publishConfig": {
  55. "access": "public"
  56. },
  57. "styleModule": "style/index.js"
  58. }