-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 896 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 896 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
{
"name": "agentos",
"version": "0.0.1",
"description": "Agent Operating System built on iii primitives",
"type": "module",
"scripts": {
"dev": "iii --config config.yaml & sleep 2 && tsx watch src/",
"start": "iii --config config.yaml & tsx src/",
"test": "vitest --run",
"test:watch": "vitest",
"test:coverage": "vitest --run --coverage",
"test:e2e": "AGENTOS_E2E=1 vitest --run --config vitest.e2e.config.ts",
"test:e2e:smoke": "AGENTOS_E2E=1 vitest --run --config vitest.e2e.config.ts --testNamePattern=\"health|chat_completions\""
},
"dependencies": {
"@anthropic-ai/sdk": "^0.39.0",
"iii-sdk": "^0.10.0",
"nodemailer": "^8.0.1"
},
"devDependencies": {
"@types/node": "^25.3.2",
"@types/nodemailer": "^7.0.11",
"@vitest/coverage-v8": "^3.2.4",
"tsx": "^4.7.0",
"typescript": "^5.4.0",
"vitest": "^3.2.4"
}
}