mirror of
https://github.com/bendtherules/opencode-multi-model.git
synced 2026-08-18 13:42:21 +00:00
51 lines
1.2 KiB
JSON
51 lines
1.2 KiB
JSON
{
|
|
"name": "opencode-multi-model",
|
|
"version": "0.1.2",
|
|
"description": "Launch multiple AI models in tmux sessions - OpenCode Plugin, CLI, and Project Tool",
|
|
"type": "module",
|
|
"main": "./dist/index.js",
|
|
"bin": {
|
|
"opencode-multi-model": "dist/cli.js"
|
|
},
|
|
"exports": {
|
|
".": "./dist/index.js",
|
|
"./core": "./dist/core/index.js"
|
|
},
|
|
"files": [
|
|
"dist",
|
|
"README.md",
|
|
"LICENSE"
|
|
],
|
|
"scripts": {
|
|
"build": "bun build src/index.ts src/cli.ts --outdir dist --target bun --format esm",
|
|
"test": "bun test",
|
|
"coverage": "bun test --coverage",
|
|
"prepublishOnly": "bun run build",
|
|
"release": "bash ./scripts/release.sh",
|
|
"setup": "bash ./scripts/setup.sh",
|
|
"lint": "biome check .",
|
|
"lint:fix": "biome check . --fix",
|
|
"format": "biome format . --write",
|
|
"typecheck": "tsc --noEmit"
|
|
},
|
|
"dependencies": {
|
|
"chalk": "^5.3.0",
|
|
"@opencode-ai/plugin": "^1.2.27",
|
|
"commander": "^12.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@biomejs/biome": "^2.4.8",
|
|
"@types/bun": "^1.3.10",
|
|
"@types/node": "^25.5.0",
|
|
"typescript": "^5.9.3"
|
|
},
|
|
"keywords": [
|
|
"opencode",
|
|
"multi-model",
|
|
"tmux",
|
|
"ai",
|
|
"plugin"
|
|
],
|
|
"license": "MIT"
|
|
}
|