UnisKB/ui/package.json

83 lines
2.4 KiB
JSON
Raw Normal View History

2025-04-14 12:11:23 +00:00
{
"name": "ui",
"version": "0.0.0",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
2025-06-13 08:17:02 +00:00
"chat": "vite --mode chat",
2025-04-14 12:11:23 +00:00
"build": "run-p type-check \"build-only {@}\" --",
2025-06-13 08:17:02 +00:00
"build-chat": "run-p type-check \"build-only-chat {@}\" --",
2025-04-14 12:11:23 +00:00
"preview": "vite preview",
"build-only": "vite build",
2025-06-13 08:17:02 +00:00
"build-only-chat": "vite build --mode chat",
2025-04-14 12:11:23 +00:00
"type-check": "vue-tsc --build",
"lint": "eslint . --fix",
"format": "prettier --write src/"
},
"dependencies": {
2025-06-13 04:01:08 +00:00
"@antv/layout": "^0.3.1",
2025-04-28 10:14:16 +00:00
"@codemirror/lang-json": "^6.0.1",
2025-06-04 03:24:04 +00:00
"@codemirror/lang-python": "^6.2.1",
2025-04-28 10:14:16 +00:00
"@codemirror/theme-one-dark": "^6.1.2",
"@logicflow/core": "^1.2.27",
"@logicflow/extension": "^1.2.27",
2025-06-06 12:08:15 +00:00
"@vavt/cm-extension": "^1.9.1",
"@vueuse/core": "^13.3.0",
2025-06-05 11:47:47 +00:00
"@wecom/jssdk": "^2.3.1",
2025-04-25 08:27:13 +00:00
"axios": "^1.8.4",
2025-07-14 09:32:56 +00:00
"cropperjs": "^1.6.2",
2025-06-05 11:47:47 +00:00
"dingtalk-jsapi": "^3.1.0",
2025-06-10 09:57:33 +00:00
"echarts": "^5.6.0",
2025-07-02 09:46:39 +00:00
"element-plus": "^2.10.2",
2025-06-09 12:09:51 +00:00
"file-saver": "^2.0.5",
2025-06-06 12:08:15 +00:00
"highlight.js": "^11.11.1",
"html2canvas": "^1.4.1",
"jspdf": "^3.0.1",
2025-07-02 09:46:39 +00:00
"katex": "^0.16.10",
2025-07-25 07:27:42 +00:00
"marked": "^12.0.2",
"md-editor-v3": "^5.8.2",
2025-07-14 09:32:56 +00:00
"mermaid": "^10.9.0",
2025-06-10 09:57:33 +00:00
"moment": "^2.30.1",
"nanoid": "^5.1.5",
2025-04-25 08:27:13 +00:00
"nprogress": "^0.2.0",
2025-04-14 12:11:23 +00:00
"pinia": "^3.0.1",
2025-06-12 08:09:06 +00:00
"recorder-core": "^1.3.25011100",
2025-06-06 12:08:15 +00:00
"screenfull": "^6.0.2",
2025-06-12 08:09:06 +00:00
"sortablejs": "^1.15.6",
2025-05-12 10:19:28 +00:00
"use-element-plus-theme": "^0.0.5",
2025-06-13 08:17:02 +00:00
"vite-plugin-html": "^3.2.2",
2025-04-14 12:11:23 +00:00
"vue": "^3.5.13",
2025-06-05 11:47:47 +00:00
"vue-clipboard3": "^2.0.0",
2025-04-28 10:14:16 +00:00
"vue-codemirror": "^6.1.1",
2025-06-12 08:09:06 +00:00
"vue-demi": "^0.14.10",
2025-06-06 12:08:15 +00:00
"vue-draggable-plus": "^0.6.0",
2025-04-16 11:10:00 +00:00
"vue-i18n": "^11.1.3",
"vue-router": "^4.5.0",
2025-07-25 07:27:42 +00:00
"vue3-menus": "^1.1.2"
2025-04-14 12:11:23 +00:00
},
"devDependencies": {
"@tsconfig/node22": "^22.0.1",
2025-07-01 12:30:43 +00:00
"@types/file-saver": "^2.0.7",
2025-04-14 12:11:23 +00:00
"@types/node": "^22.14.0",
2025-04-25 08:27:13 +00:00
"@types/nprogress": "^0.2.3",
2025-04-14 12:11:23 +00:00
"@vitejs/plugin-vue": "^5.2.3",
"@vitejs/plugin-vue-jsx": "^4.1.2",
"@vue/eslint-config-prettier": "^10.2.0",
"@vue/eslint-config-typescript": "^14.5.0",
"@vue/tsconfig": "^0.7.0",
"eslint": "^9.22.0",
"eslint-plugin-vue": "~10.0.0",
"jiti": "^2.4.2",
"npm-run-all2": "^7.0.2",
"prettier": "3.5.3",
2025-04-16 11:10:00 +00:00
"sass": "^1.86.3",
"sass-loader": "^16.0.5",
2025-04-14 12:11:23 +00:00
"typescript": "~5.8.0",
2025-04-16 11:10:00 +00:00
"unplugin-vue-define-options": "^3.0.0-beta.8",
2025-04-14 12:11:23 +00:00
"vite": "^6.2.4",
"vite-plugin-vue-devtools": "^7.7.2",
"vue-tsc": "^2.2.8"
}
}