package.json 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. {
  2. "name": "@jupyterlab/codemirror",
  3. "version": "2.0.0-alpha.1",
  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. "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. "style/*.css"
  20. ],
  21. "sideEffects": true,
  22. "main": "lib/index.js",
  23. "types": "lib/index.d.ts",
  24. "style": "style/index.css",
  25. "directories": {
  26. "lib": "lib/"
  27. },
  28. "scripts": {
  29. "build": "tsc -b",
  30. "clean": "rimraf lib",
  31. "docs": "typedoc src",
  32. "prepublishOnly": "npm run build",
  33. "watch": "tsc -b --watch"
  34. },
  35. "dependencies": {
  36. "@jupyterlab/apputils": "^2.0.0-alpha.1",
  37. "@jupyterlab/codeeditor": "^2.0.0-alpha.1",
  38. "@jupyterlab/coreutils": "^4.0.0-alpha.1",
  39. "@jupyterlab/observables": "^3.0.0-alpha.1",
  40. "@jupyterlab/statusbar": "^2.0.0-alpha.1",
  41. "@lumino/algorithm": "^1.2.0",
  42. "@lumino/commands": "^1.7.0",
  43. "@lumino/coreutils": "^1.3.1",
  44. "@lumino/disposable": "^1.3.0",
  45. "@lumino/signaling": "^1.3.0",
  46. "@lumino/widgets": "^1.9.0",
  47. "codemirror": "~5.47.0",
  48. "react": "~16.8.4"
  49. },
  50. "devDependencies": {
  51. "@types/codemirror": "^0.0.74",
  52. "rimraf": "~2.6.2",
  53. "typedoc": "^0.15.2",
  54. "typescript": "~3.7.2"
  55. },
  56. "publishConfig": {
  57. "access": "public"
  58. },
  59. "jupyterlab": {
  60. "extraStyles": {
  61. "codemirror": [
  62. "lib/codemirror.css",
  63. "addon/dialog/dialog.css",
  64. "addon/fold/foldgutter.css",
  65. "theme/material.css",
  66. "theme/zenburn.css",
  67. "theme/abcdef.css",
  68. "theme/base16-light.css",
  69. "theme/base16-dark.css",
  70. "theme/dracula.css",
  71. "theme/hopscotch.css",
  72. "theme/mbo.css",
  73. "theme/mdn-like.css",
  74. "theme/seti.css",
  75. "theme/solarized.css",
  76. "theme/the-matrix.css",
  77. "theme/xq-light.css"
  78. ]
  79. }
  80. }
  81. }