build: remove tsc

This commit is contained in:
2026-03-19 19:20:39 +05:30
parent ca753cd1ca
commit 61e8d1491d
4 changed files with 11 additions and 27 deletions
+4 -13
View File
@@ -4,19 +4,12 @@
"description": "Launch multiple AI models in tmux sessions - OpenCode Plugin, CLI, and Project Tool",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"opencode-multi-model": "./dist/cli.js"
},
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./core": {
"import": "./dist/core/index.js",
"types": "./dist/core/index.d.ts"
}
".": "./dist/index.js",
"./core": "./dist/core/index.js"
},
"files": [
"dist",
@@ -24,9 +17,8 @@
"LICENSE"
],
"scripts": {
"build": "bun build src/index.ts src/cli.ts --outdir dist --target bun --format esm && tsc --emitDeclarationOnly --outDir dist",
"build": "bun build src/index.ts src/cli.ts --outdir dist --target bun --format esm",
"test": "bun test",
"typecheck": "tsc --noEmit",
"prepublishOnly": "bun run build"
},
"dependencies": {
@@ -35,8 +27,7 @@
},
"devDependencies": {
"@types/bun": "^1.3.10",
"@types/node": "^25.5.0",
"typescript": "^5.0.0"
"@types/node": "^25.5.0"
},
"keywords": [
"opencode",