65 lines
1.6 KiB
JSON
65 lines
1.6 KiB
JSON
{
|
|
"name": "oh-my-opencode",
|
|
"version": "0.1.27",
|
|
"description": "OpenCode plugin - custom agents (oracle, librarian) and enhanced features",
|
|
"main": "dist/index.js",
|
|
"types": "dist/index.d.ts",
|
|
"type": "module",
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/index.d.ts",
|
|
"import": "./dist/index.js"
|
|
},
|
|
"./schema.json": "./dist/oh-my-opencode.schema.json"
|
|
},
|
|
"scripts": {
|
|
"build": "bun build src/index.ts --outdir dist --target bun --format esm --external @ast-grep/napi && tsc --emitDeclarationOnly && 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"
|
|
},
|
|
"keywords": [
|
|
"opencode",
|
|
"plugin",
|
|
"oracle",
|
|
"librarian",
|
|
"agents",
|
|
"ai",
|
|
"llm"
|
|
],
|
|
"author": "YeonGyu-Kim",
|
|
"license": "MIT",
|
|
"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",
|
|
"@code-yeongyu/comment-checker": "^0.4.1",
|
|
"@opencode-ai/plugin": "^1.0.7",
|
|
"xdg-basedir": "^5.1.0",
|
|
"zod": "^4.1.8"
|
|
},
|
|
"devDependencies": {
|
|
"bun-types": "latest",
|
|
"typescript": "^5.7.3"
|
|
},
|
|
"peerDependencies": {
|
|
"bun": ">=1.0.0"
|
|
},
|
|
"trustedDependencies": [
|
|
"@ast-grep/cli",
|
|
"@ast-grep/napi",
|
|
"@code-yeongyu/comment-checker"
|
|
]
|
|
}
|