-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.32 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.32 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"name": "opencode-ralph-rlm",
"version": "0.1.14",
"description": "OpenCode plugin: Ralph outer loop + RLM inner loop. Iterative AI development with file-first discipline and sub-agent support.",
"type": "module",
"main": "./dist/ralph-rlm.js",
"exports": {
".": "./dist/ralph-rlm.js"
},
"files": [
"dist",
"README.md"
],
"scripts": {
"build": "bun build .opencode/plugins/ralph-rlm.ts --outfile dist/ralph-rlm.js --target bun --format esm --external @opencode-ai/plugin",
"typecheck": "tsc --noEmit",
"verify": "bun run typecheck && bun run build",
"prepublishOnly": "bun run build",
"release": "npm run release:patch",
"release:patch": "npm version patch && git push --follow-tags",
"release:minor": "npm version minor && git push --follow-tags",
"release:major": "npm version major && git push --follow-tags"
},
"keywords": [
"opencode",
"opencode-plugin",
"ai",
"agent",
"loop",
"ralph",
"rlm",
"recursive-language-model"
],
"repository": {
"type": "git",
"url": "https://github.com/doeixd/opencode-ralph-rlm"
},
"license": "MIT",
"peerDependencies": {
"@opencode-ai/plugin": "*"
},
"devDependencies": {
"@opencode-ai/plugin": "*",
"@types/node": "^22.0.0",
"effect": "^3.13.0",
"typescript": "^5.7.0"
}
}