-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.49 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.49 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
{
"name": "opencode-auto-fallback",
"version": "0.4.59",
"description": "Advanced fallback plugin for OpenCode agents — model switching, retry with backoff, and context overflow handling",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"author": "HyeokjaeLee",
"files": [
"dist",
"docs"
],
"scripts": {
"build": "tsup",
"prepublishOnly": "tsup",
"typecheck": "tsc --noEmit",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"format": "prettier --write .",
"format:check": "prettier --check .",
"check": "tsc --noEmit && eslint . && prettier --check ."
},
"keywords": [
"opencode",
"opencode-plugin",
"llm",
"fallback",
"model-switching",
"rate-limit",
"error-recovery",
"context-management"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/HyeokjaeLee/opencode-auto-fallback.git"
},
"peerDependencies": {
"@opencode-ai/plugin": ">=1.0.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@opencode-ai/plugin": "^1.0.0",
"@types/node": "^22.0.0",
"@vitest/eslint-plugin": "^1.6.18",
"eslint": "^10.4.0",
"eslint-config-prettier": "^10.1.8",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import-x": "^4.16.2",
"prettier": "^3.8.3",
"prettier-plugin-organize-imports": "^4.3.0",
"tsup": "^8.5.1",
"typescript": "^5.0.0",
"typescript-eslint": "^8.60.0",
"vitest": "^4.1.5"
}
}