forked from ianjwhite99/opencode-with-claude
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1010 Bytes
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1010 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.8.0",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"dependencies": {
"@rynfar/meridian": "^1.60.0",
"@rynfar/meridian-plugin-opencode-scrub": "^0.2.0"
},
"devDependencies": {
"@opencode-ai/plugin": "^1.18.3",
"@types/node": "^26.1.1",
"tsup": "^8.5.1",
"typescript": "^7.0.2"
},
"scripts": {
"build": "tsup && tsc",
"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": "git+https://github.com/ianjwhite99/opencode-with-claude.git"
},
"keywords": [
"opencode",
"opencode-plugin",
"claude",
"claude-max",
"proxy"
],
"license": "MIT"
}