package.json 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. {
  2. "name": "ui",
  3. "version": "0.0.0",
  4. "private": true,
  5. "type": "module",
  6. "scripts": {
  7. "dev": "vite --mode admin",
  8. "dev:chat": "vite --mode chat",
  9. "dev:builder": "vite --mode builder",
  10. "build": "run-p type-check build-only",
  11. "build:admin": "run-p type-check build-only-admin",
  12. "build:chat": "run-p type-check build-only-chat",
  13. "build:builder": "run-p type-check build-only-builder",
  14. "preview": "vite preview",
  15. "build-only": "vite build --mode admin",
  16. "build-only-admin": "vite build --mode admin",
  17. "build-only-chat": "vite build --mode chat",
  18. "build-only-builder": "vite build --mode builder",
  19. "type-check": "vue-tsc --build",
  20. "lint": "eslint . --fix",
  21. "format": "prettier --write src/"
  22. },
  23. "dependencies": {
  24. "@antv/layout": "^0.3.1",
  25. "@codemirror/lang-json": "^6.0.1",
  26. "@codemirror/lang-python": "^6.2.1",
  27. "@codemirror/theme-one-dark": "^6.1.2",
  28. "@logicflow/core": "^1.2.27",
  29. "@logicflow/extension": "^1.2.27",
  30. "@vavt/cm-extension": "^1.9.1",
  31. "@vueuse/core": "^13.3.0",
  32. "axios": "^1.8.4",
  33. "cron-validator": "^1.4.0",
  34. "cropperjs": "^1.6.2",
  35. "dingtalk-jsapi": "^3.1.0",
  36. "echarts": "^5.6.0",
  37. "el-table-infinite-scroll": "^3.0.8",
  38. "element-plus": "^2.13.5",
  39. "file-saver": "^2.0.5",
  40. "highlight.js": "^11.11.1",
  41. "html-to-image": "^1.11.13",
  42. "html2canvas": "^1.4.1",
  43. "jspdf": "^4.1.0",
  44. "katex": "^0.16.10",
  45. "marked": "^12.0.2",
  46. "md-editor-v3": "^5.8.2",
  47. "mermaid": "^11.12.0",
  48. "moment": "^2.30.1",
  49. "nanoid": "^5.1.5",
  50. "node-forge": "^1.3.1",
  51. "nprogress": "^0.2.0",
  52. "pinia": "^3.0.1",
  53. "recorder-core": "^1.3.25011100",
  54. "sanitize-html": "^2.17.0",
  55. "screenfull": "^6.0.2",
  56. "sortablejs": "^1.15.6",
  57. "svg2pdf.js": "^2.5.0",
  58. "use-element-plus-theme": "^0.0.5",
  59. "vite-plugin-html": "^3.2.2",
  60. "vue": "^3.5.13",
  61. "vue-clipboard3": "^2.0.0",
  62. "vue-codemirror": "^6.1.1",
  63. "vue-demi": "^0.14.10",
  64. "vue-draggable-plus": "^0.6.0",
  65. "vue-i18n": "^11.1.3",
  66. "vue-router": "^4.5.0",
  67. "vue3-menus": "^1.1.2"
  68. },
  69. "devDependencies": {
  70. "@tsconfig/node22": "^22.0.1",
  71. "@types/crypto-js": "^4.2.2",
  72. "@types/file-saver": "^2.0.7",
  73. "@types/node": "^22.14.0",
  74. "@types/node-forge": "^1.3.14",
  75. "@types/nprogress": "^0.2.3",
  76. "@vitejs/plugin-vue": "^5.2.3",
  77. "@vitejs/plugin-vue-jsx": "^4.1.2",
  78. "@vue/eslint-config-prettier": "^10.2.0",
  79. "@vue/eslint-config-typescript": "^14.5.0",
  80. "@vue/tsconfig": "^0.7.0",
  81. "eslint": "^9.22.0",
  82. "eslint-plugin-vue": "~10.0.0",
  83. "jiti": "^2.4.2",
  84. "npm-run-all2": "^7.0.2",
  85. "prettier": "3.5.3",
  86. "sass": "^1.86.3",
  87. "sass-loader": "^16.0.5",
  88. "typescript": "~5.8.0",
  89. "unplugin-vue-define-options": "^3.0.0-beta.8",
  90. "vite": "^6.2.4",
  91. "vite-plugin-vue-devtools": "^7.7.2",
  92. "vue-tsc": "^2.2.8"
  93. }
  94. }