-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.27 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.27 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "@smart-coders-hq/opencode-model-fallback",
"version": "0.1.0",
"description": "OpenCode plugin for ordered model fallback chains, preemptive redirect, and automatic rate limit recovery.",
"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 check --write .",
"format": "biome check --write .",
"format:check": "biome ci .",
"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/exec": "^7.1.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^12.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": "^25.0.3",
"typescript": "^5.9.3",
"zod": "^4.3.6"
},
"keywords": [
"opencode",
"opencode-plugin",
"plugin",
"llm",
"ai",
"model-fallback",
"fallback-chain",
"rate-limit",
"rate-limit-recovery",
"failover",
"model-routing",
"provider-fallback",
"openai",
"claude",
"gemini"
],
"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"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=18.0.0"
}
}