-
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) · 987 Bytes
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 987 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": "@renjfk/opencode-model-fallback",
"version": "0.1.0",
"description": "Mapped model fallback router for OpenCode. Routes retryable model failures to configured fallback models and recovers after cooldown.",
"keywords": [
"fallback",
"model",
"opencode",
"plugin",
"router"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/renjfk/opencode-model-fallback.git"
},
"files": [
"index.js",
"lib"
],
"type": "module",
"main": "index.js",
"exports": {
".": {
"import": "./index.js"
},
"./tui": {
"import": "./index.js"
}
},
"scripts": {
"test": "vitest run",
"lint": "npx oxlint .",
"fmt": "npx oxfmt --check .",
"fmt:fix": "npx oxfmt --write .",
"check": "npm run test && npm run lint && npm run fmt",
"prepack": "npm run check"
},
"devDependencies": {
"oxfmt": "0.50.0",
"oxlint": "1.65.0",
"vitest": "4.1.6"
}
}