package.json 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. {
  2. "name": "@jupyterlab/javascript-extension",
  3. "version": "2.1.0",
  4. "description": "JupyterLab - Javascript 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",
  32. "docs": "typedoc src",
  33. "prepublishOnly": "npm run build",
  34. "watch": "tsc -b --watch"
  35. },
  36. "dependencies": {
  37. "@jupyterlab/rendermime": "^2.1.0",
  38. "@jupyterlab/rendermime-interfaces": "^2.1.0"
  39. },
  40. "devDependencies": {
  41. "rimraf": "~3.0.0",
  42. "typedoc": "^0.15.4",
  43. "typescript": "~3.7.3"
  44. },
  45. "publishConfig": {
  46. "access": "public"
  47. },
  48. "jupyterlab": {
  49. "mimeExtension": true
  50. }
  51. }