forked from unixfox/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
44 lines (44 loc) · 907 Bytes
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 907 Bytes
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
{
"name": "opencode-claude-code-plugin",
"version": "0.1.2",
"description": "Claude Code CLI provider plugin for opencode",
"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"
},
"dependencies": {
"@ai-sdk/provider": "^2.0.0",
"@ai-sdk/provider-utils": "^2.0.0"
},
"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": "https://github.com/unixfox/opencode-claude-code-plugin"
}
}