forked from open-doubao-ai/OpenDoubao
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 764 Bytes
/
Copy pathpackage.json
File metadata and controls
28 lines (28 loc) · 764 Bytes
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
{
"name": "@a2api/admin",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "tsx server/index.ts",
"dev:watch": "tsx watch server/index.ts",
"build": "tsc -p tsconfig.server.json && vite build",
"typecheck": "tsc -p tsconfig.server.json --noEmit && tsc -p tsconfig.client.json --noEmit",
"test": "vitest run",
"test:e2e": "vitest run server/apply-flow.e2e.test.ts",
"start": "node dist-server/index.js"
},
"dependencies": {
"@a2api/protocol": "*",
"@a2api/runtime": "*",
"@hono/node-server": "^1.14.4",
"hono": "^4.8.3"
},
"devDependencies": {
"@types/node": "^22.15.32",
"tsx": "^4.20.3",
"typescript": "^5.8.3",
"vite": "^6.3.5",
"vitest": "^3.2.4"
}
}