-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1001 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 1001 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
{
"name": "opencode-with-claude",
"description": "OpenCode plugin to use your Claude Max subscription via Meridian proxy",
"version": "1.6.11",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"dependencies": {
"@rynfar/meridian": "^1.42.1",
"@rynfar/meridian-plugin-opencode-scrub": "^0.2.0"
},
"devDependencies": {
"@opencode-ai/plugin": "^1.14.48",
"@types/node": "^25.7.0",
"tsup": "^8.5.1",
"typescript": "^6.0.3"
},
"scripts": {
"build": "tsup",
"test": "./test/run.sh",
"test:unit": "npm run build && node --experimental-strip-types --test test/unit/*.test.mjs",
"test:clean": "./test/run.sh --clean",
"prepublishOnly": "npm run build"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/ianjwhite99/opencode-with-claude.git"
},
"keywords": [
"opencode",
"opencode-plugin",
"claude",
"claude-max",
"proxy"
],
"license": "MIT"
}