-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.33 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.33 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "agent-arena",
"version": "0.3.0",
"description": "UFC-style AI agent competition — two Claude agents fight, one wins",
"type": "module",
"main": "electron/main.js",
"bin": {
"agent-arena": "./bin/cli.js",
"arena": "./bin/cli.js",
"arena-fight": "./bin/arena-fight.js"
},
"scripts": {
"dev": "concurrently \"tsx server/index.ts\" \"vite\"",
"electron": "concurrently \"tsx server/index.ts\" \"vite\" \"sleep 3 && npx electron .\"",
"fight": "tsx cli/index.tsx",
"arena-fight": "node bin/arena-fight.js",
"build": "vite build && tsc -p tsconfig.server.json",
"dist": "npm run build && npx electron-builder --mac",
"start": "node dist/server/index.js"
},
"dependencies": {
"@xterm/addon-fit": "^0.11.0",
"@xterm/xterm": "^6.0.0",
"chalk": "^5.0.0",
"cors": "^2.8.5",
"dotenv": "^16.4.0",
"express": "^4.21.0",
"ink": "^6.7.0",
"ink-text-input": "^6.0.0",
"motion": "^12.0.0",
"node-pty": "^1.1.0",
"open": "^10.0.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-router-dom": "^7.0.0",
"xterm": "^5.3.0"
},
"devDependencies": {
"@types/cors": "^2.8.0",
"@types/express": "^5.0.0",
"@types/node": "^22.0.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@vitejs/plugin-react": "^4.0.0",
"concurrently": "^9.0.0",
"electron": "^40.4.1",
"electron-builder": "^26.7.0",
"tsx": "^4.0.0",
"typescript": "^5.7.0",
"vite": "^6.0.0"
},
"build": {
"appId": "com.agentarena.app",
"productName": "Agent Arena",
"directories": {
"output": "release"
},
"mac": {
"category": "public.app-category.developer-tools",
"target": [
"dmg"
],
"identity": "Arturo Rios Ponce (X72FQ67Q74)",
"hardenedRuntime": true,
"gatekeeperAssess": false,
"entitlements": "build/entitlements.mac.plist",
"entitlementsInherit": "build/entitlements.mac.plist",
"notarize": false,
"icon": null
},
"files": [
"dist/client/**/*",
"dist/server/**/*",
"electron/**/*",
"server/**/*",
"package.json"
],
"extraResources": [
{
"from": "dist/client",
"to": "dist/client"
},
{
"from": "dist/server",
"to": "dist/server"
}
]
}
}