package.json.orig 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. {
  2. "name": "@jupyterlab/lsp-extension",
  3. "version": "4.5.6",
  4. "description": "",
  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. "sideEffects": [
  16. "style/*.css",
  17. "style/index.js"
  18. ],
  19. "main": "lib/index.js",
  20. "types": "lib/index.d.ts",
  21. "style": "style/index.css",
  22. "directories": {
  23. "lib": "lib/"
  24. },
  25. "files": [
  26. "lib/**/*.{d.ts,eot,gif,html,jpg,js,js.map,json,png,svg,woff2,ttf}",
  27. "schema/*.json",
  28. "style/**/*.{css,eot,gif,html,jpg,json,png,svg,woff2,ttf}",
  29. "style/index.js",
  30. "src/**/*.{ts,tsx}"
  31. ],
  32. "scripts": {
  33. "build": "tsc -b",
  34. "build:all": "npm run build",
  35. "clean": "rimraf lib && rimraf tsconfig.tsbuildinfo",
  36. "watch": "tsc -b --watch"
  37. },
  38. "dependencies": {
  39. "@jupyterlab/application": "^4.5.6",
  40. "@jupyterlab/apputils": "^4.6.6",
  41. "@jupyterlab/lsp": "^4.5.6",
  42. "@jupyterlab/running": "^4.5.6",
  43. "@jupyterlab/settingregistry": "^4.5.6",
  44. "@jupyterlab/translation": "^4.5.6",
  45. "@jupyterlab/ui-components": "^4.5.6",
  46. "@lumino/coreutils": "^2.2.2",
  47. "@lumino/polling": "^2.1.5",
  48. "@lumino/signaling": "^2.1.5",
  49. "@rjsf/utils": "^5.13.4",
  50. "react": "^18.2.0"
  51. },
  52. "devDependencies": {
  53. "rimraf": "~5.0.5",
  54. "typescript": "~5.5.4"
  55. },
  56. "publishConfig": {
  57. "access": "public"
  58. },
  59. "jupyterlab": {
  60. "extension": true,
  61. "schemaDir": "schema"
  62. },
  63. "styleModule": "style/index.js"
  64. }