1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
| {
| "name": "ruoyi-web",
| "version": "2.0.0",
| "private": false,
| "description": "ruoyi-web",
| "author": "ageer <ageerle@163.com>",
| "keywords": [
| "rouyi-web",
| "chatgpt",
| "chatbot",
| "Midjourney",
| "Midjourney UI",
| "Midjourney Proxy",
| "gpts",
| "gpts ui",
| "vue"
| ],
| "scripts": {
| "dev": "vite",
| "build": "run-p build-only",
| "buildold": "run-p type-check build-only",
| "preview": "vite preview",
| "build-only": "vite build",
| "type-check": "vue-tsc --noEmit",
| "lint": "eslint .",
| "lint:fix": "eslint . --fix",
| "bootstrap": "pnpm install && pnpm run common:prepare",
| "common:cleanup": "rimraf node_modules && rimraf pnpm-lock.yaml",
| "common:prepare": "husky install",
| "docs:dev": "vitepress dev docs",
| "docs:build": "vitepress build docs",
| "docs:preview": "vitepress preview docs"
| },
| "dependencies": {
| "@tinyflow-ai/vue": "^0.0.9",
| "@traptitech/markdown-it-katex": "^3.6.0",
| "@vicons/ionicons5": "^0.13.0",
| "@vue-office/pdf": "^2.0.10",
| "@vueuse/core": "^9.13.0",
| "await-to-js": "^3.0.0",
| "element-plus": "^2.9.2",
| "eventsource-parser": "^1.1.1",
| "form-data": "^4.0.0",
| "gpt-tokenizer": "^2.1.2",
| "highlight.js": "^11.7.0",
| "html2canvas": "^1.4.1",
| "js-audio-recorder": "^1.0.7",
| "katex": "^0.16.4",
| "localforage": "^1.10.0",
| "markdown-it": "^13.0.1",
| "naive-ui": "^2.34.3",
| "pinia": "^2.0.33",
| "vue": "^3.2.47",
| "vue-demi": "^0.14.10",
| "vue-i18n": "^9.2.2",
| "vue-router": "^4.1.6",
| "vue-waterfall-plugin-next": "^2.3.1"
| },
| "devDependencies": {
| "@antfu/eslint-config": "^0.35.3",
| "@commitlint/cli": "^17.4.4",
| "@commitlint/config-conventional": "^17.4.4",
| "@iconify/vue": "^4.1.0",
| "@types/crypto-js": "^4.1.1",
| "@types/katex": "^0.16.0",
| "@types/markdown-it": "^12.2.3",
| "@types/markdown-it-link-attributes": "^3.0.1",
| "@types/node": "^18.14.6",
| "@vitejs/plugin-vue": "^4.0.0",
| "autoprefixer": "^10.4.13",
| "axios": "^1.3.4",
| "crypto-js": "^4.1.1",
| "eslint": "^8.35.0",
| "http-proxy-middleware": "^2.0.6",
| "husky": "^8.0.3",
| "less": "^4.1.3",
| "lint-staged": "^13.1.2",
| "markdown-it-link-attributes": "^4.0.1",
| "npm-run-all": "^4.1.5",
| "postcss": "^8.4.21",
| "rimraf": "^4.2.0",
| "svg-sprite-loader": "^6.0.11",
| "svgo": "^3.3.2",
| "tailwindcss": "^3.3.6",
| "typescript": "~4.9.5",
| "vite": "^4.2.0",
| "vite-plugin-pwa": "^0.14.4",
| "vite-plugin-svg-icons": "^2.0.1",
| "vitepress": "^1.6.3",
| "vue-tsc": "^1.2.0"
| },
| "lint-staged": {
| "*.{ts,tsx,vue}": [
| "pnpm lint:fix"
| ]
| }
| }
|
|