-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 2.73 KB
/
Copy pathpackage.json
File metadata and controls
103 lines (103 loc) · 2.73 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "opencode-acpx",
"version": "0.0.1",
"description": "Use Cursor, Claude, Codex, Grok, Hermes and other ACP agents as OpenCode providers",
"type": "module",
"license": "MIT",
"author": "Intellectronica",
"keywords": [
"opencode",
"acp",
"agent-client-protocol",
"acpx",
"cursor",
"claude",
"codex",
"grok",
"hermes"
],
"repository": {
"type": "git",
"url": "git+https://github.com/intellectronica/opencode-acpx.git"
},
"bugs": {
"url": "https://github.com/intellectronica/opencode-acpx/issues"
},
"homepage": "https://github.com/intellectronica/opencode-acpx#readme",
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=22.13.0",
"opencode": ">=1.18.15 <2"
},
"packageManager": "pnpm@11.19.0",
"exports": {
".": {
"types": "./dist/provider.d.ts",
"import": "./dist/provider.js"
},
"./server": {
"types": "./dist/server.d.ts",
"import": "./dist/server.js",
"config": {}
},
"./tui": {
"types": "./dist/tui.d.ts",
"import": "./dist/tui.js"
},
"./worker": {
"types": "./dist/worker.d.ts",
"import": "./dist/worker.js"
},
"./package.json": "./package.json"
},
"files": [
"dist",
"README.md",
"CHANGELOG.md",
"LICENSE",
"SECURITY.md",
"docs",
"LICENSES"
],
"scripts": {
"build": "tsup",
"check": "pnpm format:check && pnpm lint && pnpm typecheck && pnpm test && pnpm build && pnpm pack:check",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint .",
"pack:check": "node scripts/verify-package.mjs && pnpm pack --pack-destination .artifacts --dry-run && node scripts/verify-packed-install.mjs",
"prepack": "pnpm build && node scripts/verify-package.mjs",
"release:check": "node scripts/verify-release.mjs",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:integration": "vitest run test/integration",
"test:unit": "vitest run test/unit",
"test:watch": "vitest",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@agentclientprotocol/claude-agent-acp": "0.68.0",
"@agentclientprotocol/codex-acp": "1.3.0",
"@agentclientprotocol/sdk": "1.3.0",
"@ai-sdk/provider": "3.0.8",
"@opencode-ai/plugin": "1.18.18",
"zod": "4.4.3"
},
"devDependencies": {
"@eslint/js": "9.39.1",
"@types/node": "24.10.1",
"@vitest/coverage-v8": "4.0.1",
"acpx": "0.13.0",
"ai": "6.0.168",
"eslint": "9.39.1",
"eslint-config-prettier": "10.1.8",
"opencode-ai": "1.18.18",
"prettier": "3.7.4",
"tsup": "8.5.1",
"typescript": "5.9.3",
"typescript-eslint": "8.48.1",
"vitest": "4.0.1"
}
}