package.json 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. {
  2. "name": "@jupyterlab/rendermime-interfaces",
  3. "version": "2.1.0",
  4. "description": "JupyterLab - Interfaces for Mime Renderers",
  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.map",
  18. "lib/*.js"
  19. ],
  20. "sideEffects": false,
  21. "main": "lib/index.js",
  22. "types": "lib/index.d.ts",
  23. "directories": {
  24. "lib": "lib/"
  25. },
  26. "scripts": {
  27. "build": "tsc -b",
  28. "clean": "rimraf lib && rimraf tsconfig.tsbuildinfo",
  29. "docs": "typedoc src",
  30. "prepublishOnly": "npm run build",
  31. "watch": "tsc -b --watch"
  32. },
  33. "dependencies": {
  34. "@lumino/coreutils": "^1.4.2",
  35. "@lumino/widgets": "^1.11.1"
  36. },
  37. "devDependencies": {
  38. "rimraf": "~3.0.0",
  39. "typedoc": "^0.15.4",
  40. "typescript": "~3.7.3"
  41. },
  42. "publishConfig": {
  43. "access": "public"
  44. }
  45. }