forked from theagenticguy/ralph-for-kiro
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 981 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 981 Bytes
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
{
"name": "ralph-wiggum",
"version": "1.0.0",
"description": "Ralph Wiggum iterative loop technique for Kiro CLI",
"type": "module",
"bin": {
"ralph-for-kiro": "./src/index.ts"
},
"scripts": {
"dev": "bun run src/index.ts",
"build": "bun build src/index.ts --compile --outfile ralph-for-kiro",
"test": "bun test",
"test:coverage": "bun test --coverage",
"lint": "bunx biome check src tests",
"lint:fix": "bunx biome check src tests --write",
"format": "bunx biome format src tests --write",
"format:check": "bunx biome format src tests",
"typecheck": "bunx tsc --noEmit"
},
"dependencies": {
"commander": "^14.0.2",
"zod": "^4.3.5",
"@clack/prompts": "^0.11.0",
"picocolors": "^1.1.1"
},
"devDependencies": {
"@biomejs/biome": "^2.3.11",
"@types/bun": "latest",
"bun-osv-scanner": "^2.0.0",
"typescript": "^5.9.3"
},
"engines": {
"bun": ">=1.3.0"
},
"license": "Apache-2.0"
}