2025-12-03 11:49:13 +09:00
{
"name" : "oh-my-opencode" ,
2026-03-08 01:59:20 +09:00
"version" : "3.11.0" ,
2026-01-07 05:09:13 +09:00
"description" : "The Best AI Agent Harness - Batteries-Included OpenCode Plugin with Multi-Model Orchestration, Parallel Background Agents, and Crafted LSP/AST Tools" ,
2025-12-03 11:49:13 +09:00
"main" : "dist/index.js" ,
"types" : "dist/index.d.ts" ,
"type" : "module" ,
2025-12-23 22:26:19 +09:00
"bin" : {
2026-02-21 13:59:53 +09:00
"oh-my-opencode" : "bin/oh-my-opencode.js"
2025-12-23 22:26:19 +09:00
} ,
2025-12-03 11:49:13 +09:00
"files" : [
2026-01-15 10:33:07 -05:00
"dist" ,
"bin" ,
"postinstall.mjs"
2025-12-03 11:49:13 +09:00
] ,
"exports" : {
"." : {
"types" : "./dist/index.d.ts" ,
"import" : "./dist/index.js"
2025-12-05 02:49:47 +09:00
} ,
"./schema.json" : "./dist/oh-my-opencode.schema.json"
2025-12-03 11:49:13 +09:00
} ,
"scripts" : {
2026-01-13 11:20:55 -05:00
"build" : "bun build src/index.ts --outdir dist --target bun --format esm --external @ast-grep/napi && tsc --emitDeclarationOnly && bun build src/cli/index.ts --outdir dist/cli --target bun --format esm --external @ast-grep/napi && bun run build:schema" ,
2026-01-15 10:33:07 -05:00
"build:all" : "bun run build && bun run build:binaries" ,
"build:binaries" : "bun run script/build-binaries.ts" ,
2025-12-05 02:49:47 +09:00
"build:schema" : "bun run script/build-schema.ts" ,
2025-12-03 11:49:13 +09:00
"clean" : "rm -rf dist" ,
2026-03-06 21:25:51 +00:00
"prepare" : "bun run build" ,
2026-01-15 10:33:07 -05:00
"postinstall" : "node postinstall.mjs" ,
2025-12-03 11:49:13 +09:00
"prepublishOnly" : "bun run clean && bun run build" ,
2025-12-19 19:18:15 +09:00
"typecheck" : "tsc --noEmit" ,
"test" : "bun test"
2025-12-03 11:49:13 +09:00
} ,
"keywords" : [
"opencode" ,
"plugin" ,
"oracle" ,
"librarian" ,
"agents" ,
"ai" ,
"llm"
] ,
"author" : "YeonGyu-Kim" ,
2025-12-25 00:31:27 +09:00
"license" : "SUL-1.0" ,
2025-12-03 11:49:13 +09:00
"repository" : {
"type" : "git" ,
2026-03-08 02:59:40 +09:00
"url" : "git+https://github.com/code-yeongyu/oh-my-openagent.git"
2025-12-03 11:49:13 +09:00
} ,
"bugs" : {
2026-03-08 02:59:40 +09:00
"url" : "https://github.com/code-yeongyu/oh-my-openagent/issues"
2025-12-03 11:49:13 +09:00
} ,
2026-03-08 02:59:40 +09:00
"homepage" : "https://github.com/code-yeongyu/oh-my-openagent#readme" ,
2025-12-03 11:49:13 +09:00
"dependencies" : {
2025-12-05 02:49:47 +09:00
"@ast-grep/cli" : "^0.40.0" ,
2025-12-04 22:40:25 +09:00
"@ast-grep/napi" : "^0.40.0" ,
2025-12-23 22:26:19 +09:00
"@clack/prompts" : "^0.11.0" ,
2026-02-26 09:48:57 +00:00
"@code-yeongyu/comment-checker" : "^0.7.0" ,
2026-02-21 13:59:53 +09:00
"@modelcontextprotocol/sdk" : "^1.25.2" ,
2026-03-05 11:18:12 +09:00
"@opencode-ai/plugin" : "^1.2.16" ,
"@opencode-ai/sdk" : "^1.2.17" ,
2025-12-23 22:26:19 +09:00
"commander" : "^14.0.2" ,
2026-01-15 10:33:07 -05:00
"detect-libc" : "^2.0.0" ,
2026-02-24 22:30:06 +09:00
"diff" : "^8.0.3" ,
2026-01-01 22:52:11 +09:00
"js-yaml" : "^4.1.1" ,
2025-12-28 00:45:17 +09:00
"jsonc-parser" : "^3.3.1" ,
2025-12-23 22:26:19 +09:00
"picocolors" : "^1.1.1" ,
2025-12-11 11:07:31 +09:00
"picomatch" : "^4.0.2" ,
2026-01-29 19:48:28 +09:00
"vscode-jsonrpc" : "^8.2.0" ,
2025-12-05 02:49:47 +09:00
"zod" : "^4.1.8"
2025-12-03 11:49:13 +09:00
} ,
"devDependencies" : {
2026-01-01 22:52:11 +09:00
"@types/js-yaml" : "^4.0.9" ,
2025-12-11 11:07:31 +09:00
"@types/picomatch" : "^3.0.2" ,
2026-02-01 22:42:28 +09:00
"bun-types" : "1.3.6" ,
2025-12-03 11:49:13 +09:00
"typescript" : "^5.7.3"
} ,
2026-01-15 10:33:07 -05:00
"optionalDependencies" : {
2026-03-08 01:59:20 +09:00
"oh-my-opencode-darwin-arm64" : "3.11.0" ,
"oh-my-opencode-darwin-x64" : "3.11.0" ,
"oh-my-opencode-darwin-x64-baseline" : "3.11.0" ,
"oh-my-opencode-linux-arm64" : "3.11.0" ,
"oh-my-opencode-linux-arm64-musl" : "3.11.0" ,
"oh-my-opencode-linux-x64" : "3.11.0" ,
"oh-my-opencode-linux-x64-baseline" : "3.11.0" ,
"oh-my-opencode-linux-x64-musl" : "3.11.0" ,
"oh-my-opencode-linux-x64-musl-baseline" : "3.11.0" ,
"oh-my-opencode-windows-x64" : "3.11.0" ,
"oh-my-opencode-windows-x64-baseline" : "3.11.0"
2026-01-15 10:33:07 -05:00
} ,
2026-03-05 11:18:12 +09:00
"overrides" : {
"@opencode-ai/sdk" : "^1.2.17"
} ,
2025-12-05 02:49:47 +09:00
"trustedDependencies" : [
2025-12-05 04:29:40 +09:00
"@ast-grep/cli" ,
2025-12-05 14:51:06 +09:00
"@ast-grep/napi" ,
"@code-yeongyu/comment-checker"
2025-12-05 02:49:47 +09:00
]
2025-12-03 11:49:13 +09:00
}