-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.58 KB
/
Copy pathpackage.json
File metadata and controls
87 lines (87 loc) · 2.58 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "ralph-review",
"version": "0.2.6",
"description": "Orchestrating coding agents for code review, verification and fixing via the ralph loop.",
"license": "MIT",
"type": "module",
"author": {
"name": "J Liew",
"email": "jliew@420024lab.com"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kenryu42/ralph-review.git"
},
"homepage": "https://github.com/kenryu42/ralph-review#readme",
"bugs": {
"url": "https://github.com/kenryu42/ralph-review/issues"
},
"os": [
"!win32"
],
"keywords": [
"cli",
"code-review",
"ai",
"codex",
"claude",
"opencode",
"automation",
"developer-tools"
],
"engines": {
"bun": ">=1.0.0"
},
"bin": {
"ralph-review": "src/cli.ts",
"rr": "src/cli.ts",
"rrr": "src/cli-rrr.ts"
},
"files": [
"tsconfig.json",
"src/cli.ts",
"src/cli-rrr.ts",
"src/cli-core.ts",
"src/commands",
"src/lib",
"src/terminal"
],
"scripts": {
"dev:tui": "bun run scripts/tui-dev.tsx",
"build:schema": "bun run scripts/build-schema.ts",
"publish:dry-run": "bun run scripts/publish.ts --dry-run",
"publish:recover": "bun run scripts/publish.ts --recover",
"publish:recover:execute": "bun run scripts/publish.ts --recover --execute",
"rr": "bun run src/cli.ts",
"test": "AGENT=1 bun test --max-concurrency=1",
"prepublishOnly": "bun test --max-concurrency=1",
"typecheck": "tsc --noEmit",
"knip": "knip-bun",
"check-duplicates": "bunx jscpd src tests --exitCode 1 --reporters ai",
"lint": "biome check --write .",
"lint:ci": "biome ci .",
"lint-staged": "lint-staged",
"check": "bun run typecheck && bun run knip && bun run lint && bun run check-duplicates && AGENT=1 bun test --max-concurrency=1 --coverage",
"check:ci": "bun run typecheck && bun run knip && bun run lint:ci && bun run check-duplicates && AGENT=1 bun test --max-concurrency=1 --coverage",
"prepare": "husky && bun run setup-hooks",
"setup-hooks": "bun -e 'await Bun.write(\".husky/pre-commit\", \"#!/usr/bin/env sh\\n\\nbun run knip && bun run lint-staged\\n\")' && chmod +x .husky/pre-commit"
},
"devDependencies": {
"@biomejs/biome": "^2.3.12",
"@types/bun": "latest",
"@types/react": "^19.0.0",
"husky": "^9.1.7",
"jscpd": "^4.0.9",
"knip": "^5.82.1",
"lint-staged": "^16.2.7",
"typescript": "^5",
"zod": "^4.3.6"
},
"peerDependencies": {},
"dependencies": {
"@clack/prompts": "1.0.0-alpha.9",
"@opentui/core": "^0.1.100",
"@opentui/react": "^0.1.100",
"react": "^19.0.0"
}
}