@xenosystem/acp 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.
package/dist/index.d.ts CHANGED
@@ -9,5 +9,5 @@
9
9
  * Env overrides: XENO_ACP_CONFIG, HOST, PORT, XENO_ACP_LOG.
10
10
  */
11
11
  export { buildServer } from "./server.js";
12
- export declare const VERSION = "0.2.2";
12
+ export declare const VERSION = "0.2.4";
13
13
  //# sourceMappingURL=index.d.ts.map
package/dist/index.js CHANGED
@@ -18,7 +18,7 @@ import { buildServer } from "./server.js";
18
18
  // starting one (importing this module must have no side effects).
19
19
  export { buildServer } from "./server.js";
20
20
  const log = createLogger("server");
21
- export const VERSION = "0.2.2";
21
+ export const VERSION = "0.2.4";
22
22
  function usage() {
23
23
  return [
24
24
  `xeno-acp ${VERSION} — OpenAI-compatible ACP gateway`,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xenosystem/acp",
3
- "version": "0.2.2",
3
+ "version": "0.2.4",
4
4
  "description": "OpenAI-compatible HTTP gateway for xeno-acp: drive any ACP agent via /v1/chat/completions.",
5
5
  "license": "Apache-2.0",
6
6
  "type": "module",
@@ -9,34 +9,49 @@
9
9
  "bin": {
10
10
  "xeno-acp": "dist/index.js"
11
11
  },
12
- "files": ["dist", "README.md", "LICENSE", "NOTICE", "xeno-acp.config.example.jsonc"],
12
+ "files": [
13
+ "dist",
14
+ "README.md",
15
+ "LICENSE",
16
+ "NOTICE",
17
+ "xeno-acp.config.example.jsonc"
18
+ ],
13
19
  "engines": {
14
20
  "node": ">=20"
15
21
  },
16
- "scripts": {
17
- "dev": "tsx watch src/index.ts",
18
- "start": "node dist/index.js",
19
- "build": "tsc -p tsconfig.json",
20
- "typecheck": "tsc -p tsconfig.json --noEmit",
21
- "prepack": "pnpm run build",
22
- "clean": "rimraf dist *.tsbuildinfo"
23
- },
24
- "keywords": ["acp", "agent-client-protocol", "openai-compatible", "ai-gateway", "xeno"],
22
+ "keywords": [
23
+ "acp",
24
+ "agent-client-protocol",
25
+ "openai-compatible",
26
+ "ai-gateway",
27
+ "xeno"
28
+ ],
25
29
  "homepage": "https://xenostudio.ai/product/acp",
26
30
  "repository": {
27
31
  "type": "git",
28
32
  "url": "git+https://github.com/XENO-CORPORATION/xeno-acp.git",
29
33
  "directory": "packages/server"
30
34
  },
31
- "bugs": { "url": "https://github.com/XENO-CORPORATION/xeno-acp/issues" },
32
- "publishConfig": { "access": "public" },
35
+ "bugs": {
36
+ "url": "https://github.com/XENO-CORPORATION/xeno-acp/issues"
37
+ },
38
+ "publishConfig": {
39
+ "access": "public"
40
+ },
33
41
  "dependencies": {
34
- "@xenosystem/acp-core": "workspace:^",
42
+ "@xenosystem/acp-core": "^0.2.4",
35
43
  "fastify": "^5.1.0"
36
44
  },
37
45
  "devDependencies": {
38
46
  "@types/node": "^22.9.0",
39
47
  "tsx": "^4.19.2",
40
48
  "typescript": "^5.6.3"
49
+ },
50
+ "scripts": {
51
+ "dev": "tsx watch src/index.ts",
52
+ "start": "node dist/index.js",
53
+ "build": "tsc -p tsconfig.json",
54
+ "typecheck": "tsc -p tsconfig.json --noEmit",
55
+ "clean": "rimraf dist *.tsbuildinfo"
41
56
  }
42
- }
57
+ }