-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.35 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.35 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-runtime-triage",
"version": "0.1.1",
"description": "Runtime-only per-agent model and provider overrides for the OpenCode TUI",
"type": "module",
"main": "./dist/server.js",
"types": "./dist/server.d.ts",
"exports": {
"./server": {
"types": "./dist/server.d.ts",
"import": "./dist/server.js"
},
"./tui": {
"types": "./dist/tui.d.ts",
"import": "./dist/tui.js"
}
},
"files": [
"dist",
"LICENSE",
"README.md"
],
"scripts": {
"build": "tsc -p tsconfig.build.json",
"check": "tsc -p tsconfig.json --noEmit",
"test": "bun test",
"prepack": "npm run clean && npm run build",
"clean": "rm -rf dist"
},
"keywords": [
"opencode",
"opencode-plugin",
"tui",
"model-routing"
],
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/EL-File4138/opencode-runtime-triage.git"
},
"homepage": "https://github.com/EL-File4138/opencode-runtime-triage#readme",
"bugs": {
"url": "https://github.com/EL-File4138/opencode-runtime-triage/issues"
},
"license": "Unlicense",
"engines": {
"opencode": ">=1.17.0"
},
"peerDependencies": {
"@opencode-ai/plugin": ">=1.1.51"
},
"devDependencies": {
"@opencode-ai/plugin": "1.4.8",
"@types/bun": "^1.2.0",
"@types/node": "^22.15.0",
"typescript": "^5.8.2"
}
}