-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 1.84 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 1.84 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
{
"name": "ralph-wiggum-cli",
"version": "1.0.8",
"type": "module",
"main": "dist/index.js",
"bin": {
"ralph-wiggum-cli": "./bin/ralph-wiggum-cli.js"
},
"scripts": {
"dev": "bun run src/index.ts",
"build": "bun build src/index.ts --outdir dist --target node",
"start": "bun run src/index.ts",
"typecheck": "tsc --noEmit",
"test": "bun test",
"lint": "ultracite check",
"lint:fix": "ultracite fix",
"format": "ultracite fix",
"prepublishOnly": "bun run build",
"prepare": "husky"
},
"files": [
"dist",
"bin"
],
"keywords": [
"ralph",
"ai",
"agent",
"claude",
"amp",
"droid",
"opencode",
"cursor",
"codex",
"gemini"
],
"author": "Ye Myat Min (Jeff)",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/yemyat/ralph-cli.git"
},
"homepage": "https://github.com/yemyat/ralph-cli#readme",
"bugs": {
"url": "https://github.com/yemyat/ralph-cli/issues"
},
"description": "CLI tool for managing Ralph Wiggum AI development workflows",
"dependencies": {
"@clack/prompts": "^0.11.0",
"commander": "^14.0.2",
"fs-extra": "^11.3.3",
"mustache": "^4.2.0",
"picocolors": "^1.1.1"
},
"lint-staged": {
"*.{ts,tsx}": [
"tsc-files --noEmit",
"bun run lint"
]
},
"devDependencies": {
"@biomejs/biome": "2.3.11",
"@commitlint/cli": "^20.3.1",
"@commitlint/config-conventional": "^20.3.1",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/bun": "^1.3.5",
"@types/fs-extra": "^11.0.4",
"@types/mustache": "^4.2.6",
"@types/node": "^25.0.6",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"semantic-release": "^25.0.2",
"tsc-files": "^1.1.4",
"typescript": "^5.9.3",
"ultracite": "7.0.11"
}
}