-
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) · 1.04 KB
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 1.04 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
{
"name": "rig",
"private": true,
"type": "module",
"exports": {
".": "./skills/rig/rig.ts",
"./eslint": "./skills/rig/eslint/index.js",
"./globals": "./skills/rig/globals.ts",
"./engines/anthropic": "./skills/rig/engines/anthropic.ts",
"./engines/codex": "./skills/rig/engines/codex.ts",
"./engines/gemini": "./skills/rig/engines/gemini.ts",
"./engines/pi": "./skills/rig/engines/pi.ts"
},
"scripts": {
"test": "vitest run src/",
"test:integration": "vitest run scripts/haiku.integration.test.ts",
"sample": "vitest run scripts/run-sample.test.ts",
"sample:run": "node skills/rig/rig.ts",
"lint": "node skills/rig/eslint/lint.js .",
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"@anthropic-ai/sdk": "^0.113.0",
"@earendil-works/pi-agent-core": "^0.81.1",
"@earendil-works/pi-ai": "^0.81.1",
"@github/copilot-sdk": "^1.0.0-beta.9",
"@openai/codex-sdk": "^0.145.0",
"@types/node": "^25.9.1",
"typescript": "^5.8.0",
"vitest": "^4.1.7",
"zx": "^8.8.5"
}
}