@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.
Files changed (2) hide show
  1. package/CHANGELOG.md +7 -0
  2. package/package.json +12 -13
package/CHANGELOG.md CHANGED
@@ -1,5 +1,12 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.0.0
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [b9f30a6]
8
+ - @theokit/sdk@2.0.0
9
+
3
10
  ## 2.0.0
4
11
 
5
12
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@theokit/acp",
3
- "version": "0.1.0",
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
- "@theokit/sdk": "workspace:^",
43
- "@agentclientprotocol/sdk": "^0.22.1"
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": "^3.0.0"
44
+ "vitest": "^4.1.8",
45
+ "@theokit/sdk": "2.0.0"
51
46
  },
52
47
  "publishConfig": {
53
- "access": "public",
54
- "provenance": false
48
+ "access": "public"
49
+ },
50
+ "scripts": {
51
+ "build": "tsup",
52
+ "typecheck": "tsc --noEmit",
53
+ "test": "vitest run"
55
54
  }
56
- }
55
+ }