@melonite/codex-acp 1.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.
Files changed (4) hide show
  1. package/LICENSE +190 -0
  2. package/README.md +78 -0
  3. package/dist/index.js +29935 -0
  4. package/package.json +71 -0
package/package.json ADDED
@@ -0,0 +1,71 @@
1
+ {
2
+ "name": "@melonite/codex-acp",
3
+ "publishConfig": {
4
+ "access": "public"
5
+ },
6
+ "version": "1.1.0",
7
+ "description": "",
8
+ "main": "dist/index.js",
9
+ "bin": {
10
+ "codex-acp": "dist/index.js"
11
+ },
12
+ "files": [
13
+ "dist/index.js",
14
+ "README.md",
15
+ "LICENSE",
16
+ "package.json"
17
+ ],
18
+ "scripts": {
19
+ "prepublishOnly": "npm run build",
20
+ "build": "node build.mjs",
21
+ "bundle:all": "npm run bundle:linux-x64 && npm run bundle:linux-arm64 && npm run bundle:darwin-x64 && npm run bundle:darwin-arm64 && npm run bundle:win-x64 && npm run bundle:win-arm64",
22
+ "bundle:linux-x64": "bun build src/index.ts --minify --sourcemap --compile --target=bun-linux-x64-baseline --outfile dist/bin/codex-acp-x64-linux",
23
+ "bundle:linux-arm64": "bun build src/index.ts --minify --sourcemap --compile --target=bun-linux-arm64 --outfile dist/bin/codex-acp-arm64-linux",
24
+ "bundle:darwin-x64": "bun build src/index.ts --minify --sourcemap --compile --target=bun-darwin-x64-baseline --outfile dist/bin/codex-acp-x64-darwin",
25
+ "bundle:darwin-arm64": "bun build src/index.ts --minify --sourcemap --compile --target=bun-darwin-arm64 --outfile dist/bin/codex-acp-arm64-darwin",
26
+ "bundle:win-x64": "bun build src/index.ts --minify --sourcemap --compile --target=bun-windows-x64-baseline --outfile dist/bin/codex-acp-x64-windows.exe",
27
+ "bundle:win-arm64": "bun build src/index.ts --minify --sourcemap --compile --target=bun-windows-arm64 --outfile dist/bin/codex-acp-arm64-windows.exe",
28
+ "package:all": "npm run package:linux-x64 && npm run package:linux-arm64 && npm run package:darwin-x64 && npm run package:darwin-arm64 && npm run package:win-x64 && npm run package:win-arm64",
29
+ "package:linux-x64": "cd dist/bin && zip codex-acp-x64-linux.zip codex-acp-x64-linux",
30
+ "package:linux-arm64": "cd dist/bin && zip codex-acp-arm64-linux.zip codex-acp-arm64-linux",
31
+ "package:darwin-x64": "cd dist/bin && zip codex-acp-x64-darwin.zip codex-acp-x64-darwin",
32
+ "package:darwin-arm64": "cd dist/bin && zip codex-acp-arm64-darwin.zip codex-acp-arm64-darwin",
33
+ "package:win-x64": "cd dist/bin && zip codex-acp-x64-windows.zip codex-acp-x64-windows.exe",
34
+ "package:win-arm64": "cd dist/bin && zip codex-acp-arm64-windows.zip codex-acp-arm64-windows.exe",
35
+ "start": "node --import tsx src/index.ts",
36
+ "generate-types": "codex app-server generate-ts --out src/app-server",
37
+ "test": "vitest run",
38
+ "test:e2e": "npm run build && RUN_E2E_TESTS=true vitest run src/__tests__/CodexACPAgent/e2e",
39
+ "test:watch": "vitest",
40
+ "typecheck": "tsc --noEmit",
41
+ "codex-test": "tsx .claude/skills/run-codex/scripts/run-codex-test.ts"
42
+ },
43
+ "homepage": "https://github.com/max-melonite/codex-acp#readme",
44
+ "bugs": {
45
+ "url": "https://github.com/max-melonite/codex-acp/issues"
46
+ },
47
+ "repository": {
48
+ "type": "git",
49
+ "url": "git+https://github.com/max-melonite/codex-acp.git"
50
+ },
51
+ "keywords": [],
52
+ "author": "Agent Client Protocol",
53
+ "license": "Apache-2.0",
54
+ "type": "module",
55
+ "devDependencies": {
56
+ "@types/node": "^26.1.0",
57
+ "esbuild": "^0.28.1",
58
+ "mcp-hello-world": "^1.1.2",
59
+ "tsx": "^4.23.0",
60
+ "typescript": "^6.0.3",
61
+ "vitest": "^4.1.10"
62
+ },
63
+ "dependencies": {
64
+ "@agentclientprotocol/sdk": "^1.2.0",
65
+ "@openai/codex": "^0.143.0",
66
+ "diff": "^9.0.0",
67
+ "open": "^11.0.0",
68
+ "vscode-jsonrpc": "^9.0.1",
69
+ "zod": "^4.0.0"
70
+ }
71
+ }