@theokit/acp 0.1.0 → 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +7 -0
- package/package.json +12 -13
package/CHANGELOG.md
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@theokit/acp",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "1.0.0",
|
|
4
4
|
"description": "Agent Client Protocol (ACP) server adapter for @theokit/sdk. Exposes an SDKAgent over stdio JSON-RPC so Zed/Cursor/Claude Desktop can drive it. ADRs D349-D360.",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"type": "module",
|
|
@@ -33,24 +33,23 @@
|
|
|
33
33
|
"LICENSE",
|
|
34
34
|
"CHANGELOG.md"
|
|
35
35
|
],
|
|
36
|
-
"scripts": {
|
|
37
|
-
"build": "tsup",
|
|
38
|
-
"typecheck": "tsc --noEmit",
|
|
39
|
-
"test": "vitest run"
|
|
40
|
-
},
|
|
41
36
|
"peerDependencies": {
|
|
42
|
-
"@
|
|
43
|
-
"@
|
|
37
|
+
"@agentclientprotocol/sdk": "^0.22.1",
|
|
38
|
+
"@theokit/sdk": "^2.0.0"
|
|
44
39
|
},
|
|
45
40
|
"devDependencies": {
|
|
46
|
-
"@theokit/sdk": "workspace:*",
|
|
47
41
|
"@agentclientprotocol/sdk": "~0.22.1",
|
|
48
42
|
"tsup": "^8.5.0",
|
|
49
43
|
"typescript": "^5.8.0",
|
|
50
|
-
"vitest": "^
|
|
44
|
+
"vitest": "^4.1.8",
|
|
45
|
+
"@theokit/sdk": "2.0.0"
|
|
51
46
|
},
|
|
52
47
|
"publishConfig": {
|
|
53
|
-
"access": "public"
|
|
54
|
-
|
|
48
|
+
"access": "public"
|
|
49
|
+
},
|
|
50
|
+
"scripts": {
|
|
51
|
+
"build": "tsup",
|
|
52
|
+
"typecheck": "tsc --noEmit",
|
|
53
|
+
"test": "vitest run"
|
|
55
54
|
}
|
|
56
|
-
}
|
|
55
|
+
}
|