-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.92 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.92 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
{
"name": "opencode-model-fallback",
"version": "0.1.0",
"description": "Ordered model fallback chains with health tracking for OpenCode",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"scripts": {
"build": "bun build index.ts --outdir dist --target node --format esm --external @opencode-ai/plugin --external zod && tsc --emitDeclarationOnly",
"test": "bun test",
"typecheck": "tsc --noEmit",
"dev": "tsc --watch --noEmit",
"lint": "biome lint .",
"lint:fix": "biome lint --write .",
"format": "biome format --write .",
"format:check": "biome format --check .",
"release": "semantic-release"
},
"files": ["dist", "plugin.json", "examples"],
"peerDependencies": {
"@opencode-ai/plugin": ">=1.2.0",
"zod": ">=4.0.0"
},
"devDependencies": {
"@biomejs/biome": "2.4.7",
"@opencode-ai/plugin": "^1.2.24",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^11.0.6",
"@semantic-release/npm": "^13.1.5",
"@semantic-release/release-notes-generator": "^14.1.0",
"@types/bun": "^1.3.10",
"@types/js-yaml": "^4.0.9",
"js-yaml": "^4.1.0",
"semantic-release": "^24.2.9",
"typescript": "^5.9.3",
"zod": "^4.3.6"
},
"keywords": ["opencode", "plugin", "model-fallback", "rate-limit", "failover"],
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/Smart-Coders-HQ/opencode-model-fallback.git"
},
"author": "Błażej Pawlak <blazej@smartcoders.xyz>",
"homepage": "https://github.com/Smart-Coders-HQ/opencode-model-fallback#readme",
"bugs": {
"url": "https://github.com/Smart-Coders-HQ/opencode-model-fallback/issues"
},
"engines": {
"node": ">=18.0.0"
}
}