82 lines
2.3 KiB
JSON
82 lines
2.3 KiB
JSON
{
|
|
"name": "oh-my-opencode",
|
|
"version": "2.12.1",
|
|
"description": "OpenCode plugin - custom agents (oracle, librarian) and enhanced features",
|
|
"main": "dist/index.js",
|
|
"types": "dist/index.d.ts",
|
|
"type": "module",
|
|
"bin": {
|
|
"oh-my-opencode": "./dist/cli/index.js"
|
|
},
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/index.d.ts",
|
|
"import": "./dist/index.js"
|
|
},
|
|
"./google-auth": {
|
|
"types": "./dist/google-auth.d.ts",
|
|
"import": "./dist/google-auth.js"
|
|
},
|
|
"./schema.json": "./dist/oh-my-opencode.schema.json"
|
|
},
|
|
"scripts": {
|
|
"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",
|
|
"build:schema": "bun run script/build-schema.ts",
|
|
"clean": "rm -rf dist",
|
|
"prepublishOnly": "bun run clean && bun run build",
|
|
"typecheck": "tsc --noEmit",
|
|
"test": "bun test"
|
|
},
|
|
"keywords": [
|
|
"opencode",
|
|
"plugin",
|
|
"oracle",
|
|
"librarian",
|
|
"agents",
|
|
"ai",
|
|
"llm"
|
|
],
|
|
"author": "YeonGyu-Kim",
|
|
"license": "SUL-1.0",
|
|
"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": {
|
|
"@ast-grep/cli": "^0.40.0",
|
|
"@ast-grep/napi": "^0.40.0",
|
|
"@clack/prompts": "^0.11.0",
|
|
"@code-yeongyu/comment-checker": "^0.6.1",
|
|
"@modelcontextprotocol/sdk": "^1.25.1",
|
|
"@openauthjs/openauth": "^0.4.3",
|
|
"@opencode-ai/plugin": "^1.0.162",
|
|
"@opencode-ai/sdk": "^1.0.162",
|
|
"commander": "^14.0.2",
|
|
"hono": "^4.10.4",
|
|
"js-yaml": "^4.1.1",
|
|
"jsonc-parser": "^3.3.1",
|
|
"picocolors": "^1.1.1",
|
|
"picomatch": "^4.0.2",
|
|
"xdg-basedir": "^5.1.0",
|
|
"zod": "^4.1.8"
|
|
},
|
|
"devDependencies": {
|
|
"@types/js-yaml": "^4.0.9",
|
|
"@types/picomatch": "^3.0.2",
|
|
"bun-types": "latest",
|
|
"typescript": "^5.7.3"
|
|
},
|
|
"trustedDependencies": [
|
|
"@ast-grep/cli",
|
|
"@ast-grep/napi",
|
|
"@code-yeongyu/comment-checker"
|
|
]
|
|
}
|