Files
opencode-multi-model/package.json
T
2026-03-20 10:39:56 +05:30

42 lines
935 B
JSON

{
"name": "@bendtherules/opencode-multi-model",
"version": "0.0.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",
"prepublishOnly": "bun run build",
"release": "bash ./scripts/release.sh"
},
"dependencies": {
"@opencode-ai/plugin": "^1.2.27",
"commander": "^12.0.0"
},
"devDependencies": {
"@types/bun": "^1.3.10",
"@types/node": "^25.5.0"
},
"keywords": [
"opencode",
"multi-model",
"tmux",
"ai",
"plugin"
],
"license": "MIT"
}