Files
opencode-multi-model/package.json
T
2026-03-23 14:44:34 +05:30

52 lines
1.2 KiB
JSON

{
"name": "opencode-multi-model",
"version": "0.1.5",
"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": {
"@opencode-ai/plugin": "^1.2.27",
"chalk": "^5.3.0",
"commander": "^12.0.0",
"ora": "^9.3.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"
}