package.json 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. {
  2. "name": "@jupyterlab/jldbq-extension",
  3. "version": "1.0.0",
  4. "description": "JLDBQ Extension",
  5. "homepage": "",
  6. "license": "MIT",
  7. "author": "yili",
  8. "sideEffects": [
  9. "style/**/*.css",
  10. "style/index.js"
  11. ],
  12. "main": "lib/index.js",
  13. "types": "lib/index.d.ts",
  14. "style": "style/index.css",
  15. "directories": {
  16. "lib": "lib/"
  17. },
  18. "files": [
  19. "lib/**/*.{d.ts,eot,gif,html,jpg,js,js.map,json,png,svg,woff2,ttf}",
  20. "style/**/*.{css,js,eot,gif,html,jpg,json,png,svg,woff2,ttf}",
  21. "schema/*.json"
  22. ],
  23. "scripts": {
  24. "build": "tsc -b",
  25. "clean": "rimraf lib && rimraf tsconfig.tsbuildinfo",
  26. "docs": "typedoc src",
  27. "watch": "tsc -b --watch"
  28. },
  29. "dependencies": {
  30. "@emotion/react": "^11.9.0",
  31. "@emotion/styled": "^11.8.1",
  32. "@jupyterlab/application": "^3.4.3",
  33. "@jupyterlab/apputils": "^3.4.3",
  34. "@jupyterlab/settingregistry": "^3.4.3",
  35. "@jupyterlab/ui-components": "^3.4.3",
  36. "@lumino/signaling": "^1.10.0",
  37. "@lumino/widgets": "^1.30.0",
  38. "@mui/icons-material": "^5.8.0",
  39. "@mui/lab": "^5.0.0-alpha.83",
  40. "@mui/material": "^5.8.1",
  41. "@silevis/reactgrid": "^4.0.3",
  42. "antd": "^4.22.3",
  43. "lodash": "^4.17.21",
  44. "moment": "^2.29.4",
  45. "react": "^17.0.1",
  46. "react-beautiful-dnd": "^13.1.0",
  47. "react-hook-form": "^7.34.1",
  48. "react-select": "^5.4.0",
  49. "react-syntax-highlighter": "^15.5.0",
  50. "swr": "^1.3.0"
  51. },
  52. "devDependencies": {
  53. "@types/react-beautiful-dnd": "^13.1.2",
  54. "rimraf": "~3.0.0",
  55. "typedoc": "~0.21.2",
  56. "typescript": "~4.1.3"
  57. },
  58. "publishConfig": {
  59. "access": "public"
  60. },
  61. "jupyterlab": {
  62. "extension": true,
  63. "schemaDir": "schema"
  64. },
  65. "styleModule": "style/index.js"
  66. }