package.json 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. {
  2. "name": "@jupyterlab/vdom-extension",
  3. "version": "3.0.0-alpha.4",
  4. "description": "JupyterLab - VDOM Renderer",
  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. "files": [
  16. "lib/*.d.ts",
  17. "lib/*.js",
  18. "style/*"
  19. ],
  20. "sideEffects": [
  21. "style/**/*"
  22. ],
  23. "main": "lib/index.js",
  24. "types": "lib/index.d.ts",
  25. "style": "style/index.css",
  26. "directories": {
  27. "lib": "lib/"
  28. },
  29. "scripts": {
  30. "build": "tsc -b",
  31. "clean": "rimraf lib && rimraf tsconfig.tsbuildinfo",
  32. "docs": "typedoc src",
  33. "prepublishOnly": "npm run build",
  34. "watch": "tsc -b --watch"
  35. },
  36. "dependencies": {
  37. "@jupyterlab/application": "^3.0.0-alpha.4",
  38. "@jupyterlab/apputils": "^3.0.0-alpha.4",
  39. "@jupyterlab/docregistry": "^3.0.0-alpha.4",
  40. "@jupyterlab/notebook": "^3.0.0-alpha.4",
  41. "@jupyterlab/rendermime": "^3.0.0-alpha.4",
  42. "@jupyterlab/ui-components": "^3.0.0-alpha.4",
  43. "@jupyterlab/vdom": "^3.0.0-alpha.4"
  44. },
  45. "devDependencies": {
  46. "rimraf": "~3.0.0",
  47. "typedoc": "^0.17.7",
  48. "typescript": "~3.9.2"
  49. },
  50. "publishConfig": {
  51. "access": "public"
  52. },
  53. "jupyterlab": {
  54. "extension": true
  55. }
  56. }