-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.77 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 1.77 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
60
61
62
63
64
65
{
"name": "opencode-model-dispatch",
"version": "0.0.0",
"description": "OpenCode plugin design for automatic model selection on subagent dispatch.",
"license": "MIT",
"author": "Lauritz",
"homepage": "https://github.com/Lauritz/opencode-model-dispatch#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/Lauritz/opencode-model-dispatch.git"
},
"bugs": {
"url": "https://github.com/Lauritz/opencode-model-dispatch/issues"
},
"keywords": [
"opencode",
"opencode-plugin",
"subagent",
"model-picker",
"tauri"
],
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"bin": {
"opencode-model-dispatch-picker": "./bin/picker.js"
},
"files": [
"dist",
"assets",
"bin",
"scripts",
"docs",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc -p tsconfig.json",
"build:picker": "bun run scripts/build-picker.ts",
"dev:picker": "bun run --cwd picker dev --host 127.0.0.1",
"dev:picker:tauri": "bun run scripts/dev-picker-tauri.ts",
"preview:picker": "bun run dev:picker",
"doctor:picker": "bun run scripts/check-picker-dev.ts",
"check:packaging": "bun run scripts/check-packaging.ts",
"coverage": "bun test --coverage --coverage-reporter=lcov",
"check:coverage": "bun run coverage && bun run scripts/check-coverage.ts",
"typecheck": "tsc -p tsconfig.json --noEmit",
"test": "bun test",
"prepublishOnly": "bun run build && bun run check:packaging"
},
"peerDependencies": {
"@opencode-ai/plugin": "*"
},
"devDependencies": {
"@opencode-ai/plugin": "*",
"typescript": "^5.6.0",
"bun-types": "latest"
}
}