acpx 0.1.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/package.json ADDED
@@ -0,0 +1,48 @@
1
+ {
2
+ "name": "acpx",
3
+ "version": "0.1.0",
4
+ "description": "Headless CLI client for the Agent Client Protocol (ACP) — talk to coding agents from the command line",
5
+ "type": "module",
6
+ "files": [
7
+ "dist",
8
+ "README.md",
9
+ "LICENSE"
10
+ ],
11
+ "bin": {
12
+ "acpx": "dist/cli.js"
13
+ },
14
+ "scripts": {
15
+ "build": "tsup src/cli.ts --format esm --dts --clean",
16
+ "prepack": "npm run build",
17
+ "dev": "tsx src/cli.ts",
18
+ "typecheck": "tsc --noEmit"
19
+ },
20
+ "keywords": [
21
+ "acp",
22
+ "agent-client-protocol",
23
+ "cli",
24
+ "codex",
25
+ "claude-code",
26
+ "coding-agent",
27
+ "ai"
28
+ ],
29
+ "author": "Janitr AI",
30
+ "license": "Apache-2.0",
31
+ "repository": {
32
+ "type": "git",
33
+ "url": "git+https://github.com/janitrai/acpx.git"
34
+ },
35
+ "engines": {
36
+ "node": ">=18"
37
+ },
38
+ "dependencies": {
39
+ "@agentclientprotocol/sdk": "^0.14.1",
40
+ "commander": "^13.0.0"
41
+ },
42
+ "devDependencies": {
43
+ "tsup": "^8.0.0",
44
+ "tsx": "^4.0.0",
45
+ "typescript": "^5.7.0",
46
+ "@types/node": "^22.0.0"
47
+ }
48
+ }