-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 964 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 964 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
29
30
31
32
{
"name": "vibeguild",
"version": "0.1.0",
"description": "Vibe Guild — an autonomous AI world for FeatBit vibe marketing",
"type": "module",
"scripts": {
"start": "node --env-file=.env --import tsx src/world.ts start",
"task": "node --env-file=.env --import tsx src/world.ts task",
"meetup": "node --env-file=.env --import tsx src/world.ts meetup",
"status": "node --env-file=.env --import tsx src/world.ts status",
"vg": "node scripts/vg.mjs",
"setup": "node --env-file=.env scripts/vg-setup.mjs",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@anthropic-ai/claude-agent-sdk": "^0.2.47",
"chokidar": "^5.0.0",
"commander": "^14.0.3",
"discord.js": "^14.25.1",
"node-cron": "^4.2.1",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/node": "^25.3.0",
"@types/node-cron": "^3.0.11",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
},
"engines": {
"node": ">=20.6.0"
}
}