@xenosystem/acp-core 0.2.2 → 0.2.4

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 (1) hide show
  1. package/package.json +25 -12
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xenosystem/acp-core",
3
- "version": "0.2.2",
3
+ "version": "0.2.4",
4
4
  "description": "Embeddable ACP-client engine: supervise ACP agents and stream structured events. The framework-free core of xeno-acp.",
5
5
  "license": "Apache-2.0",
6
6
  "type": "module",
@@ -16,25 +16,33 @@
16
16
  "import": "./dist/agent-version-policy.js"
17
17
  }
18
18
  },
19
- "files": ["dist", "README.md", "LICENSE", "NOTICE"],
19
+ "files": [
20
+ "dist",
21
+ "README.md",
22
+ "LICENSE",
23
+ "NOTICE"
24
+ ],
20
25
  "engines": {
21
26
  "node": ">=20"
22
27
  },
23
- "scripts": {
24
- "build": "tsc -p tsconfig.json",
25
- "typecheck": "tsc -p tsconfig.json --noEmit",
26
- "prepack": "pnpm run build",
27
- "clean": "rimraf dist *.tsbuildinfo"
28
- },
29
- "keywords": ["acp", "agent-client-protocol", "ai-agent", "xeno"],
28
+ "keywords": [
29
+ "acp",
30
+ "agent-client-protocol",
31
+ "ai-agent",
32
+ "xeno"
33
+ ],
30
34
  "homepage": "https://xenostudio.ai/product/acp",
31
35
  "repository": {
32
36
  "type": "git",
33
37
  "url": "git+https://github.com/XENO-CORPORATION/xeno-acp.git",
34
38
  "directory": "packages/core"
35
39
  },
36
- "bugs": { "url": "https://github.com/XENO-CORPORATION/xeno-acp/issues" },
37
- "publishConfig": { "access": "public" },
40
+ "bugs": {
41
+ "url": "https://github.com/XENO-CORPORATION/xeno-acp/issues"
42
+ },
43
+ "publishConfig": {
44
+ "access": "public"
45
+ },
38
46
  "dependencies": {
39
47
  "@agentclientprotocol/sdk": "0.24.0",
40
48
  "strip-json-comments": "^5.0.1"
@@ -42,5 +50,10 @@
42
50
  "devDependencies": {
43
51
  "@types/node": "^22.9.0",
44
52
  "typescript": "^5.6.3"
53
+ },
54
+ "scripts": {
55
+ "build": "tsc -p tsconfig.json",
56
+ "typecheck": "tsc -p tsconfig.json --noEmit",
57
+ "clean": "rimraf dist *.tsbuildinfo"
45
58
  }
46
- }
59
+ }