Files
opencode-plugin-ralph-loop/package.json
Dmytro Stanchiev b4101ea67b modify plugin structure
Signed-off-by: Dmytro Stanchiev <git@dmytros.dev>
2026-04-19 18:07:01 -04:00

42 lines
971 B
JSON

{
"name": "opencode-plugin-ralph-loop",
"version": "0.1.0",
"description": "Standalone Ralph Loop plugin for OpenCode (extracted from oh-my-opencode)",
"main": ".opencode/plugins/ralph-loop.js",
"types": "dist/index.d.ts",
"type": "module",
"files": [
".opencode",
"dist",
"docs",
"README.md",
"LICENSE.md"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./.opencode/plugins/ralph-loop.js"
}
},
"scripts": {
"build": "bun build src/index.ts --outdir dist --target bun --format esm && tsc --emitDeclarationOnly",
"clean": "rm -rf dist",
"prepublishOnly": "bun run clean && bun run build",
"typecheck": "tsc --noEmit"
},
"keywords": [
"opencode",
"plugin",
"ralph-loop",
"continuation"
],
"license": "SUL-1.0",
"dependencies": {
"@opencode-ai/plugin": "^1.1.19"
},
"devDependencies": {
"bun-types": "1.3.6",
"typescript": "^5.7.3"
}
}