-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.58 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.58 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
{
"name": "halfcloud",
"version": "0.1.0",
"private": true,
"type": "module",
"engines": {
"node": ">=22.5"
},
"scripts": {
"dev": "concurrently -k \"npm:dev:server\" \"npm:dev:web\"",
"dev:server": "tsx watch backend/server.ts",
"dev:web": "vite --config vite.config.ts",
"build": "npm run build:web && npm run build:server",
"build:web": "vite build --config vite.config.ts",
"build:server": "tsc -p backend/tsconfig.json",
"start": "node dist/backend/server.js",
"update:app": "node dist/backend/update-app.js",
"typecheck": "tsc -p backend/tsconfig.json --noEmit && vue-tsc -p frontend/tsconfig.json --noEmit",
"test": "npm run build:server && node --test tests/*.test.mjs && node --import tsx --test frontend/tests/*.test.mjs"
},
"dependencies": {
"@ai-sdk/anthropic": "^4.0.44",
"@ai-sdk/azure": "^4.0.49",
"@ai-sdk/cerebras": "^2.0.79",
"@ai-sdk/google": "^4.0.56",
"@ai-sdk/groq": "^4.0.37",
"@ai-sdk/openai": "^4.0.50",
"@ai-sdk/vue": "^4.0.79",
"@ai-sdk/xai": "^4.0.51",
"ai": "^7.0.79",
"cookie-parser": "^1.4.7",
"dockerode": "^5.0.1",
"express": "^5.2.1",
"markdown-it": "^15.0.0",
"vue": "^3.5.41",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/cookie-parser": "^1.4.10",
"@types/dockerode": "^3.3.47",
"@types/express": "^5.0.6",
"@types/markdown-it": "^14.2.0",
"@types/node": "^24.10.9",
"@vitejs/plugin-vue": "^6.0.2",
"concurrently": "^9.2.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vite": "^8.2.2",
"vue-tsc": "^3.2.5"
}
}