forked from khalilgharbaoui/opencode-claude-code-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.28 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.28 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
{
"name": "@khalilgharbaoui/opencode-claude-code-plugin",
"version": "0.4.23",
"description": "Claude Code CLI provider plugin for opencode",
"author": "Khalil Gharbaoui",
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"typecheck": "tsc --noEmit",
"test": "tsx --test test-bridge.ts test-broker.ts test-auto-continue.ts test-has-new-user-content.ts test-get-claude-user-message.ts test-logger.ts test-cli-args.ts test-compaction-model.ts test-tool-mapping.ts test-cwd-resolution.ts test-todo-ledger.ts test-session-affinity.ts"
},
"dependencies": {
"@ai-sdk/provider": "^3.0.8",
"@ai-sdk/provider-utils": "^3.0.8"
},
"devDependencies": {
"@types/node": "^25.5.0",
"tsup": "^8.0.0",
"typescript": "^5.7.0"
},
"keywords": [
"opencode",
"claude",
"claude-code",
"ai-sdk",
"provider"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/khalilgharbaoui/opencode-claude-code-plugin.git"
},
"publishConfig": {
"access": "public"
}
}