forked from iOfficeAI/AionUi
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
211 lines (211 loc) · 6.89 KB
/
package.json
File metadata and controls
211 lines (211 loc) · 6.89 KB
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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
{
"name": "AionUi",
"productName": "AionUi",
"version": "1.8.16",
"description": "Transform your command-line AI agent into a modern, efficient AI Chat interface.",
"main": "./out/main/index.js",
"engines": {
"node": ">=22 <25"
},
"scripts": {
"start": "electron-vite dev",
"cli": "electron-vite dev",
"webui": "bun run cli -- --webui",
"webui:remote": "bun run cli -- --webui --remote",
"webui:prod": "cross-env NODE_ENV=production bun run cli -- --webui",
"webui:prod:remote": "cross-env NODE_ENV=production bun run cli -- --webui --remote",
"resetpass": "bun run cli -- --resetpass",
"package": "electron-vite build",
"make": "electron-vite build",
"dist": "node scripts/build-with-builder.js",
"dist:mac": "node scripts/build-with-builder.js auto --mac",
"dist:win": "node scripts/build-with-builder.js auto --win",
"dist:linux": "node scripts/build-with-builder.js auto --linux",
"build-mac": "node scripts/build-with-builder.js auto --mac --arm64 --x64",
"build-win": "node scripts/build-with-builder.js auto --win",
"build-deb": "node scripts/build-with-builder.js auto --linux",
"build-mac:arm64": "node scripts/build-with-builder.js arm64 --mac --arm64",
"build-mac:x64": "node scripts/build-with-builder.js x64 --mac --x64",
"build": "node scripts/build-with-builder.js auto --mac --arm64 --x64",
"lint": "eslint --quiet --ext .ts,.tsx .",
"lint:fix": "eslint --ext .ts,.tsx . --fix",
"format": "prettier --write \"src/**/*.{ts,tsx,js,jsx,json,css,md}\"",
"format:check": "prettier --check \"src/**/*.{ts,tsx,js,jsx,json,css,md}\"",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:contract": "vitest run tests/contract",
"test:integration": "vitest run tests/integration",
"debug:perf": "cross-env ACP_PERF=1 PERF_MONITOR=1 bun start",
"debug:perf:report": "bunx tsx scripts/debug-performance.ts --report",
"debug:mcp": "bunx tsx scripts/debug-mcp.ts",
"debug:mcp:list": "bunx tsx scripts/debug-mcp.ts list",
"debug:mcp:validate": "bunx tsx scripts/debug-mcp.ts validate",
"debug:custom-agent": "bunx tsx scripts/debug-custom-agent.ts",
"prepare": "husky",
"postinstall": "node scripts/postinstall.js"
},
"keywords": [],
"author": {
"name": "AionUi",
"email": "service@aionui.com"
},
"license": "Apache-2.0",
"devDependencies": {
"@electron/fuses": "^1.8.0",
"@electron/notarize": "^3.1.0",
"@types/better-sqlite3": "^7.6.13",
"@types/cookie-parser": "^1.4.9",
"@types/cors": "^2.8.19",
"@types/html-to-text": "^9.0.4",
"@types/node": "^24.3.1",
"@types/qrcode-terminal": "^0.12.0",
"@types/react-dom": "^19.1.6",
"@types/react-syntax-highlighter": "^15.5.13",
"@types/semver": "^7.7.1",
"@types/turndown": "^5.0.6",
"@types/ws": "^8.18.1",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"cross-env": "^7.0.3",
"dotenv": "^17.2.1",
"electron": "^37.3.1",
"electron-builder": "^26.6.0",
"electron-vite": "^5.0.0",
"esbuild": "^0.25.11",
"eslint": "^8.57.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-prettier": "^5.5.4",
"husky": "^9.1.7",
"jest": "^30.1.3",
"jest-diff": "^30.0.4",
"lint-staged": "^16.2.7",
"patch-package": "^8.0.0",
"prettier": "^3.6.2",
"ts-node": "^10.9.2",
"typescript": "^5.8.3",
"unocss": "^66.3.3",
"unocss-preset-extra": "^1.0.0",
"vite": "^6.4.1",
"vite-plugin-static-copy": "^3.2.0",
"vitest": "^4.0.18"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.71.2",
"@arco-design/web-react": "^2.66.1",
"@aws-sdk/client-bedrock": "^3.987.0",
"@codemirror/lang-css": "^6.3.1",
"@codemirror/lang-json": "^6.0.2",
"@codemirror/lang-markdown": "^6.5.0",
"@floating-ui/react": "^0.27.16",
"@google/genai": "^1.16.0",
"@grammyjs/transformer-throttler": "^1.2.1",
"@icon-park/react": "^1.4.2",
"@larksuiteoapi/node-sdk": "^1.58.0",
"@modelcontextprotocol/sdk": "^1.20.0",
"@monaco-editor/react": "^4.7.0",
"@office-ai/aioncli-core": "^0.24.5",
"@office-ai/platform": "^0.3.16",
"@types/bcryptjs": "^2.4.6",
"@types/jsonwebtoken": "^9.0.10",
"@uiw/codemirror-extensions-langs": "^4.25.1",
"@uiw/react-codemirror": "^4.25.2",
"bcryptjs": "^2.4.3",
"better-sqlite3": "^12.4.1",
"buffer": "^6.0.3",
"classnames": "^2.5.1",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"croner": "^9.1.0",
"diff": "^8.0.3",
"diff2html": "^3.4.55",
"dingtalk-stream": "^2.1.4",
"docx": "^9.5.1",
"electron-squirrel-startup": "^1.0.1",
"electron-updater": "^6.6.2",
"eventemitter3": "^5.0.1",
"express": "^5.1.0",
"express-rate-limit": "^7.5.1",
"fix-path": "^4.0.0",
"grammy": "^1.39.3",
"html-to-text": "^9.0.5",
"i18next": "^23.7.16",
"i18next-browser-languagedetector": "^7.2.0",
"jsonrepair": "^3.13.0",
"jsonwebtoken": "^9.0.2",
"katex": "^0.16.22",
"mammoth": "^1.11.0",
"officeparser": "^5.2.2",
"openai": "^5.12.2",
"pptx2json": "^0.0.10",
"process": "^0.11.10",
"qrcode-terminal": "^0.12.0",
"qrcode.react": "^4.2.0",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-i18next": "^14.0.5",
"react-markdown": "^10.1.0",
"react-router-dom": "^7.8.0",
"react-syntax-highlighter": "^16.1.0",
"react-virtuoso": "^4.18.1",
"rehype-katex": "^7.0.1",
"rehype-raw": "^7.0.0",
"remark-breaks": "^4.0.0",
"remark-gfm": "^4.0.1",
"remark-math": "^6.0.0",
"semver": "^7.7.2",
"sharp": "^0.34.3",
"stream-browserify": "^3.0.0",
"streamdown": "^1.5.1",
"strip-json-comments": "^3.1.1",
"swr": "^2.3.6",
"tiny-csrf": "^1.1.6",
"turndown": "^7.2.2",
"turndown-plugin-gfm": "^1.0.2",
"web-tree-sitter": "^0.25.10",
"ws": "^8.18.3",
"xlsx-republish": "^0.20.3",
"zod": "^3.25.76"
},
"optionalDependencies": {
"@rollup/rollup-win32-x64-msvc": "^4.46.2",
"electron-winstaller": "^5.4.0"
},
"electronRebuild": {
"electronVersion": "^37.3.1"
},
"resolutions": {
"tmp": "^0.2.5",
"body-parser": "^2.2.1",
"node-forge": "^1.3.2",
"mdast-util-to-hast": "^13.2.1",
"jws": "4.0.1",
"lodash-es": "^4.17.23",
"tar": "^7.5.7",
"hono": "^4.11.7"
},
"overrides": {
"tmp": "^0.2.5",
"body-parser": "^2.2.1",
"node-forge": "^1.3.2",
"mdast-util-to-hast": "^13.2.1",
"jws@<4": "3.2.3",
"jws@>=4": "4.0.1",
"lodash-es": "^4.17.23",
"tar": "^7.5.7",
"hono": "^4.11.7"
},
"lint-staged": {
"*.{ts,tsx,js,jsx}": [
"eslint --fix",
"prettier --write"
],
"*.{json,css,md}": [
"prettier --write"
]
},
"patchedDependencies": {
"7zip-bin@5.2.0": "patches/7zip-bin@5.2.0.patch"
}
}