-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.54 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.54 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
{
"name": "@idrisgit/opencode-subagent-model-selector",
"version": "0.1.2",
"description": "Route OpenCode subagents to models based on the parent session model.",
"type": "module",
"packageManager": "bun@1.3.5",
"main": "./dist/index.js",
"exports": {
".": "./dist/index.js",
"./server": "./dist/index.js",
"./tui": "./dist/tui.js"
},
"oc-plugin": [
"server",
"tui"
],
"files": [
"dist",
"schema.json"
],
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/IdrisGit/opencode-subagent-model-selector.git"
},
"bugs": {
"url": "https://github.com/IdrisGit/opencode-subagent-model-selector/issues"
},
"homepage": "https://github.com/IdrisGit/opencode-subagent-model-selector#readme",
"keywords": [
"opencode",
"opencode-plugin",
"subagent",
"model-routing"
],
"scripts": {
"build": "bun run scripts/build.ts",
"generate-schema": "bun run scripts/generate-schema.ts && bunx biome format --write schema.json",
"typecheck": "tsc --noEmit",
"check": "biome check .",
"format": "biome format --write .",
"changelog": "changelogen --bump --clean --noAuthors",
"prepack": "bun run typecheck && bun run generate-schema && bun run check && bun run build"
},
"devDependencies": {
"@biomejs/biome": "2.5.6",
"@opencode-ai/plugin": "1.18.15",
"@types/bun": "latest",
"@valibot/to-json-schema": "1.7.1",
"changelogen": "0.6.2",
"valibot": "1.4.2",
"typescript": "^5"
},
"dependencies": {
"@opentui/core": "0.4.5",
"@opentui/solid": "0.4.5",
"solid-js": "1.9.12"
}
}