-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 1.1 KB
/
package.json
File metadata and controls
31 lines (31 loc) · 1.1 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
{
"name": "aituber-flow",
"private": true,
"scripts": {
"dev": "concurrently -k -n web,api -c cyan,green \"npm run dev:web\" \"npm run dev:api\"",
"dev:web": "cd apps/web && npm run dev",
"dev:api": "cd apps/server-ts && bun run dev",
"dev:desktop": "cd apps/desktop && npm run dev",
"setup": "cd apps/web && npm install && cd ../server-ts && bun install && cd ../../packages/sdk-ts && bun install && cd ../../apps/desktop && npm install",
"test": "bun test tests/engine/ tests/routes/ --verbose",
"lint": "cd apps/web && npm run lint",
"build": "cd apps/web && npm run build",
"build:desktop": "cd apps/desktop && npm run prepare-runtime",
"create-node": "bun run scripts/create-node.ts"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.30.1",
"@google/generative-ai": "^0.21.0",
"discord.js": "^14.25.1",
"obs-websocket-js": "^5.0.7",
"openai": "^4.104.0",
"tmi.js": "^1.8.5"
},
"devDependencies": {
"@hono/zod-validator": "^0.4.0",
"concurrently": "^9.1.2",
"drizzle-orm": "^0.38.0",
"hono": "^4.12.1",
"zod": "^3.24.0"
}
}