-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.08 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.08 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
{
"name": "smart-chat-agent",
"version": "1.0.0",
"description": "基于TypeScript的智能群聊Agent - MVP版本",
"main": "dist/server.js",
"scripts": {
"dev": "ts-node src/server.ts",
"build": "npm run build:server && npm run build:webui",
"build:server": "tsc",
"build:webui": "vite build",
"start": "node dist/server.js",
"webui:dev": "vite",
"webui:preview": "vite preview",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:ci": "jest --ci --coverage --watchAll=false"
},
"dependencies": {
"@fastify/static": "^8.2.0",
"@google/genai": "^0.4.0",
"@types/ws": "^8.18.1",
"dotenv": "^16.3.1",
"fastify": "^5.0.0",
"vue": "^3.5.21",
"ws": "^8.18.3"
},
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/node": "^20.8.7",
"@vitejs/plugin-vue": "^6.0.1",
"jest": "^30.1.3",
"ts-jest": "^29.4.1",
"ts-node": "^10.9.1",
"typescript": "^5.9.2",
"vite": "^7.1.5",
"vue-tsc": "^3.0.6"
},
"engines": {
"node": ">=20.19.0"
}
}