-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.31 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.31 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
{
"name": "opencode-subagent-models",
"version": "0.2.3",
"description": "OpenCode plugin to set global or per-session models and reasoning variants for subagents.",
"type": "module",
"main": "./src/index.ts",
"exports": {
".": "./src/index.ts",
"./server": "./src/index.ts",
"./tui": "./src/tui.ts"
},
"files": [
"src",
"README.md",
"CHANGELOG.md",
"LICENSE"
],
"scripts": {
"typecheck": "tsc --noEmit --target ES2022 --module NodeNext --moduleResolution NodeNext --allowImportingTsExtensions --skipLibCheck src/index.ts src/state.ts src/tui.ts test.ts",
"test": "npm run typecheck && node test.ts",
"check:package": "node scripts/check-package.mjs",
"prepack": "npm test"
},
"devDependencies": {
"@opencode-ai/plugin": "^1.17.18",
"@types/node": "^22.0.0",
"typescript": "^5.8.2"
},
"keywords": [
"opencode",
"plugin",
"subagents",
"models",
"reasoning",
"session"
],
"author": "Yivas",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Yivas/opencode-subagent-models.git"
},
"bugs": {
"url": "https://github.com/Yivas/opencode-subagent-models/issues"
},
"homepage": "https://github.com/Yivas/opencode-subagent-models#readme",
"publishConfig": {
"access": "public"
}
}