-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.48 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.48 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
{
"name": "@saaskit-dev/acp-runtime",
"version": "0.1.1",
"description": "Product-facing, product-agnostic ACP runtime with runtime agent launch helpers.",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"files": [
"dist/index.js",
"dist/index.d.ts",
"dist/runtime",
"dist/examples/client-sdk-smoke.js",
"dist/examples/client-sdk-smoke.d.ts",
"dist/examples/runtime-smoke-all.js",
"dist/examples/runtime-smoke-all.d.ts",
"dist/examples/runtime-claude-smoke.js",
"dist/examples/runtime-claude-smoke.d.ts",
"dist/examples/runtime-simulator-smoke.js",
"dist/examples/runtime-simulator-smoke.d.ts",
"README.md",
"LICENSE"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "pnpm --filter @saaskit-dev/simulator-agent-acp build && pnpm run build:self",
"build:self": "tsc -p tsconfig.json",
"dev": "pnpm run build:self -- --watch",
"harness:clean-outputs": "node dist/harness/clean-outputs.js",
"harness:run-agent": "node dist/harness/run-agent-matrix.js",
"presmoke:client-sdk": "pnpm run build",
"smoke:client-sdk": "node dist/examples/client-sdk-smoke.js",
"presmoke:runtime:claude": "pnpm run build",
"smoke:runtime:claude": "node dist/examples/runtime-claude-smoke.js",
"presmoke:runtime": "pnpm run build",
"smoke:runtime": "node dist/examples/runtime-smoke-all.js",
"test": "pnpm --filter @saaskit-dev/simulator-agent-acp test && vitest run",
"test:watch": "vitest",
"lint": "tsc --noEmit",
"prepublishOnly": "npm run build && npm test"
},
"keywords": [
"acp",
"agent-client-protocol",
"ai-agent",
"runtime",
"testing",
"regression",
"fault-injection",
"session",
"claude",
"codex",
"gemini"
],
"license": "MIT",
"engines": {
"node": ">=18.0.0"
},
"devDependencies": {
"@types/node": "^22.15.3",
"@types/tar": "^7.0.87",
"@types/unzipper": "^0.10.11",
"typescript": "^5.5.0",
"vitest": "^3.0.0"
},
"dependencies": {
"@agentclientprotocol/sdk": "^0.18.0",
"tar": "^7.5.13",
"unzipper": "^0.12.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/saaskit-dev/acp-runtime.git"
},
"homepage": "https://github.com/saaskit-dev/acp-runtime#readme",
"bugs": {
"url": "https://github.com/saaskit-dev/acp-runtime/issues"
}
}