-
Notifications
You must be signed in to change notification settings - Fork 78
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 946 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 946 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": "@rivet-dev/agent-os-workspace",
"private": true,
"packageManager": "pnpm@10.13.1",
"engines": {
"node": ">=20"
},
"scripts": {
"start": "npx turbo watch build",
"build": "npx turbo build",
"test": "npx turbo test",
"test:watch": "npx turbo watch test",
"check-types": "npx turbo check-types",
"lint": "pnpm biome check .",
"fmt": "pnpm biome check --write --diagnostic-level=error .",
"shell": "pnpm --filter @rivet-dev/agent-os-shell shell"
},
"devDependencies": {
"@biomejs/biome": "^2.3",
"@copilotkit/llmock": "^1.6.0",
"@rivet-dev/agent-os-claude": "workspace:*",
"@rivet-dev/agent-os-common": "workspace:*",
"@rivet-dev/agent-os-codex-agent": "workspace:*",
"@rivet-dev/agent-os-core": "workspace:*",
"@rivet-dev/agent-os-pi": "workspace:*",
"@types/node": "^22.19.15",
"turbo": "^2.5.6",
"typescript": "^5.9.2"
},
"resolutions": {
"@rivet-dev/agent-os-core": "workspace:*"
}
}