-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 912 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 912 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
{
"name": "coup-cli",
"version": "1.0.0",
"description": "CLI implementation of Coup card game with LLM players",
"main": "dist/index.js",
"bin": {
"coup-cli": "dist/index.js"
},
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "ts-node src/index.ts",
"play": "yarn dev play --players 6 --player-model gemini:gemini-2.5-pro --player-model gemini:gemini-2.5-flash --player-model anthropic:claude-opus-4-20250514 --player-model anthropic:claude-sonnet-4-20250514 --player-model openai:gpt-5-mini-2025-08-07 --player-model openai:gpt-5-2025-08-07",
"test": "jest"
},
"dependencies": {
"chalk": "^5.4.1",
"commander": "^14.0.0",
"dotenv": "^17.2.1",
"openai": "^5.11.0"
},
"devDependencies": {
"@types/jest": "^29.5.0",
"@types/node": "^24.0.0",
"jest": "^29.5.0",
"ts-node": "^10.9.0",
"typescript": "^5.0.0"
}
}