-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.22 KB
/
Copy pathpackage.json
File metadata and controls
82 lines (82 loc) · 2.22 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "opencode-model-control",
"version": "0.3.0",
"description": "A local model routing control panel and MCP companion for OpenCode.",
"keywords": [
"opencode",
"mcp",
"model-router",
"model-routing",
"local-first",
"ai"
],
"author": "Jorvek AI Solutions",
"homepage": "https://github.com/BitL8-ByteShort/opencode-model-control#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/BitL8-ByteShort/opencode-model-control.git"
},
"bugs": {
"url": "https://github.com/BitL8-ByteShort/opencode-model-control/issues"
},
"type": "module",
"license": "MIT",
"private": false,
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=22.12.0"
},
"bin": {
"opencode-model-control": "bin/opencode-model-control.js"
},
"files": [
"bin",
"data",
"dist",
"docs",
"!docs/plans",
"!docs/assets/opencode-model-control-banner.png",
"!docs/assets/control-panel-concept.png",
"examples",
"src",
"CHANGELOG.md",
"CODE_OF_CONDUCT.md",
"CONTRIBUTING.md",
"LICENSE",
"README.md",
"SECURITY.md"
],
"scripts": {
"build": "vite build",
"check": "tsc --noEmit",
"dev": "node src/server/index.js --dev",
"mcp": "node src/mcp/index.js",
"prepack": "npm run verify",
"start": "node bin/opencode-model-control.js",
"test": "node --test",
"verify": "npm run check && npm test && npm run build",
"test:browser": "node --import ./scripts/browser/environment.mjs ./node_modules/@playwright/test/cli.js test --config scripts/browser/playwright.config.mjs",
"test:host": "node scripts/host-acceptance.mjs",
"test:package": "node scripts/package-acceptance.mjs",
"test:metadata": "node scripts/metadata-smoke.mjs"
},
"devDependencies": {
"@modelcontextprotocol/client": "2.0.0",
"@playwright/test": "1.58.2",
"@types/node": "26.4.0",
"@types/react": "19.2.18",
"@types/react-dom": "19.2.5",
"@vitejs/plugin-react": "6.1.1",
"react": "19.2.8",
"react-dom": "19.2.8",
"typescript": "7.0.2",
"vite": "8.2.2"
},
"dependencies": {
"@modelcontextprotocol/server": "2.0.0",
"jsonc-parser": "3.3.1",
"zod": "4.5.4"
}
}