-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 871 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 871 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
33
{
"name": "emubench-agent",
"version": "1.0.0",
"type": "module",
"description": "Configurable agent used for benchmarking models via `emubench`.",
"main": "index.js",
"scripts": {
"build": "tsc -p tsconfig.json && tsc-alias -p tsconfig.json --resolve-full-paths",
"dev": "tsx watch src/index.ts",
"start": "node dist/index.js",
"shared-sync": "./scripts/sharedsync.sh"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/node": "^24.0.3",
"tsc-alias": "^1.8.16",
"tsx": "^4.20.3",
"typescript": "^5.8.3",
"vitest": "^3.2.4"
},
"dependencies": {
"@ai-sdk/anthropic": "^2.0.27",
"@ai-sdk/google": "^2.0.20",
"@ai-sdk/openai": "^2.0.49",
"ai": "^5.0.95",
"axios": "^1.10.0",
"dotenv": "^16.5.0",
"express": "^5.1.0",
"firebase-admin": "^13.4.0"
}
}