2025-12-03 11:49:13 +09:00
|
|
|
{
|
|
|
|
|
"name": "oh-my-opencode",
|
2026-01-05 00:30:37 +00:00
|
|
|
"version": "2.12.4",
|
2025-12-03 11:49:13 +09:00
|
|
|
"description": "OpenCode plugin - custom agents (oracle, librarian) and enhanced features",
|
|
|
|
|
"main": "dist/index.js",
|
|
|
|
|
"types": "dist/index.d.ts",
|
|
|
|
|
"type": "module",
|
2025-12-23 22:26:19 +09:00
|
|
|
"bin": {
|
|
|
|
|
"oh-my-opencode": "./dist/cli/index.js"
|
|
|
|
|
},
|
2025-12-03 11:49:13 +09:00
|
|
|
"files": [
|
|
|
|
|
"dist"
|
|
|
|
|
],
|
|
|
|
|
"exports": {
|
|
|
|
|
".": {
|
|
|
|
|
"types": "./dist/index.d.ts",
|
|
|
|
|
"import": "./dist/index.js"
|
2025-12-05 02:49:47 +09:00
|
|
|
},
|
2025-12-13 00:30:17 +09:00
|
|
|
"./google-auth": {
|
|
|
|
|
"types": "./dist/google-auth.d.ts",
|
|
|
|
|
"import": "./dist/google-auth.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": {
|
2025-12-30 22:03:30 +09:00
|
|
|
"build": "bun build src/index.ts src/google-auth.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",
|
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",
|
|
|
|
|
"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",
|
|
|
|
|
"url": "git+https://github.com/code-yeongyu/oh-my-opencode.git"
|
|
|
|
|
},
|
|
|
|
|
"bugs": {
|
|
|
|
|
"url": "https://github.com/code-yeongyu/oh-my-opencode/issues"
|
|
|
|
|
},
|
|
|
|
|
"homepage": "https://github.com/code-yeongyu/oh-my-opencode#readme",
|
|
|
|
|
"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",
|
2025-12-28 14:30:41 +09:00
|
|
|
"@code-yeongyu/comment-checker": "^0.6.1",
|
2026-01-01 22:52:11 +09:00
|
|
|
"@modelcontextprotocol/sdk": "^1.25.1",
|
2025-12-13 04:58:37 +09:00
|
|
|
"@openauthjs/openauth": "^0.4.3",
|
2026-01-04 18:43:15 +00:00
|
|
|
"@opencode-ai/plugin": "^1.1.1",
|
|
|
|
|
"@opencode-ai/sdk": "^1.1.1",
|
2025-12-23 22:26:19 +09:00
|
|
|
"commander": "^14.0.2",
|
2025-12-13 04:58:37 +09:00
|
|
|
"hono": "^4.10.4",
|
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",
|
2025-12-05 23:24:20 +09:00
|
|
|
"xdg-basedir": "^5.1.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",
|
2025-12-03 11:49:13 +09:00
|
|
|
"bun-types": "latest",
|
|
|
|
|
"typescript": "^5.7.3"
|
|
|
|
|
},
|
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
|
|
|
}
|