package.json 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. {
  2. "name": "@jupyterlab/codemirror",
  3. "version": "1.0.0-alpha.6",
  4. "description": "JupyterLab - CodeMirror Editor Provider",
  5. "homepage": "https://github.com/jupyterlab/jupyterlab",
  6. "bugs": {
  7. "url": "https://github.com/jupyterlab/jupyterlab/issues"
  8. },
  9. "license": "BSD-3-Clause",
  10. "author": "Project Jupyter",
  11. "files": [
  12. "lib/*.d.ts",
  13. "lib/*.js.map",
  14. "lib/*.js",
  15. "style/*.css"
  16. ],
  17. "main": "lib/index.js",
  18. "types": "lib/index.d.ts",
  19. "directories": {
  20. "lib": "lib/"
  21. },
  22. "repository": {
  23. "type": "git",
  24. "url": "https://github.com/jupyterlab/jupyterlab.git"
  25. },
  26. "scripts": {
  27. "build": "tsc -b",
  28. "clean": "rimraf lib",
  29. "docs": "typedoc --options tdoptions.json --theme ../../typedoc-theme src",
  30. "prepublishOnly": "npm run build",
  31. "watch": "tsc -b --watch"
  32. },
  33. "dependencies": {
  34. "@jupyterlab/apputils": "^1.0.0-alpha.6",
  35. "@jupyterlab/codeeditor": "^1.0.0-alpha.6",
  36. "@jupyterlab/coreutils": "^3.0.0-alpha.6",
  37. "@jupyterlab/observables": "^2.2.0-alpha.6",
  38. "@jupyterlab/statusbar": "^1.0.0-alpha.6",
  39. "@phosphor/algorithm": "^1.1.2",
  40. "@phosphor/commands": "^1.6.1",
  41. "@phosphor/coreutils": "^1.3.0",
  42. "@phosphor/disposable": "^1.1.2",
  43. "@phosphor/signaling": "^1.2.2",
  44. "@phosphor/widgets": "^1.6.0",
  45. "codemirror": "~5.46.0",
  46. "react": "~16.8.4"
  47. },
  48. "devDependencies": {
  49. "@types/codemirror": "~0.0.74",
  50. "rimraf": "~2.6.2",
  51. "typedoc": "^0.14.2",
  52. "typescript": "~3.4.3"
  53. },
  54. "publishConfig": {
  55. "access": "public"
  56. }
  57. }