forked from openchamber/opencode-claude
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.59 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 1.59 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
{
"name": "@openchamber/opencode-claude",
"version": "0.14.0",
"description": "Claude Code in OpenCode — local CLI auth, Agent SDK harness, effort variants, tools/MCP, images & compact.",
"license": "MIT",
"type": "module",
"main": "./opencode-claude.js",
"module": "./opencode-claude.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./opencode-claude.js",
"default": "./opencode-claude.js"
}
},
"files": [
"dist",
"opencode-claude.js"
],
"scripts": {
"prebuild": "node -e \"require('node:fs').rmSync('dist', { recursive: true, force: true })\"",
"build": "tsc -p tsconfig.json",
"test": "bun test/smoke.ts",
"test:haiku": "bun test/haiku-live.ts",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/openchamber/opencode-claude.git"
},
"homepage": "https://github.com/openchamber/opencode-claude",
"bugs": {
"url": "https://github.com/openchamber/opencode-claude/issues"
},
"keywords": [
"opencode",
"opencode-plugin",
"claude",
"claude-code",
"anthropic",
"oauth",
"agent-sdk",
"openai-compatible",
"ai",
"llm",
"streaming",
"agent"
],
"engines": {
"node": ">=18"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@anthropic-ai/claude-agent-sdk": "^0.3.224",
"@opencode-ai/plugin": "^1.18.15",
"zod": "^4.4.3"
},
"devDependencies": {
"@types/bun": "^1.3.11",
"@types/node": "^22.15.0",
"typescript": "^5.9.3"
}
}