-
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
112 lines (112 loc) · 3.04 KB
/
package.json
File metadata and controls
112 lines (112 loc) · 3.04 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "ralph-starter",
"version": "0.3.2",
"description": "Ralph Wiggum made easy. One command to run autonomous AI coding loops with auto-commit, PRs, and Docker sandbox.",
"main": "dist/index.js",
"bin": {
"ralph-starter": "dist/cli.js"
},
"type": "module",
"scripts": {
"preinstall": "npx only-allow pnpm",
"commit": "cz",
"build": "node -e \"require('node:fs').rmSync('dist',{recursive:true,force:true})\" && tsc",
"dev": "tsc --watch",
"start": "node dist/cli.js",
"test": "vitest",
"test:run": "vitest run",
"test:coverage": "vitest run --coverage",
"lint": "biome lint src",
"lint:fix": "biome lint --write src",
"format": "biome format --write src",
"format:check": "biome format src",
"check": "biome check src",
"check:fix": "biome check --write src",
"typecheck": "tsc --noEmit",
"prepare": "husky",
"prepublishOnly": "pnpm build && pnpm test:run",
"release": "pnpm version patch && git push origin main --tags && pnpm publish",
"release:minor": "pnpm version minor && git push origin main --tags && pnpm publish",
"release:major": "pnpm version major && git push origin main --tags && pnpm publish",
"docs:dev": "pnpm --dir docs run start",
"docs:build": "pnpm --dir docs run build",
"docs:serve": "pnpm --dir docs run serve"
},
"keywords": [
"ralph-wiggum",
"claude-code",
"ai",
"autonomous",
"coding",
"loop",
"orchestrator",
"cursor",
"codex",
"opencode",
"cli"
],
"author": "Ruben Marcus <ruben@rubenmarcus.dev>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/multivmlabs/ralph-starter"
},
"homepage": "https://github.com/multivmlabs/ralph-starter#readme",
"engines": {
"node": ">=18.0.0"
},
"packageManager": "pnpm@10.15.1",
"files": [
"dist",
"!dist/**/*.js.map",
"!dist/**/*.d.ts.map",
"templates",
"README.md"
],
"publishConfig": {
"access": "public"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.78.0",
"@modelcontextprotocol/sdk": "^1.0.0",
"chalk": "^5.3.0",
"chalk-animation": "^2.0.3",
"commander": "^14.0.2",
"execa": "^9.5.2",
"gradient-string": "^3.0.0",
"inquirer": "^13.2.2",
"ora": "^9.1.0",
"pdf-parse": "^2.4.5",
"simple-git": "^3.27.0",
"yaml": "^2.7.0",
"zod": "^4.3.6"
},
"optionalDependencies": {
"sharp": "^0.33.0"
},
"devDependencies": {
"@biomejs/biome": "^2.3.13",
"@commitlint/cli": "^20.3.1",
"@commitlint/config-conventional": "^20.3.1",
"@types/inquirer": "^9.0.7",
"@types/node": "^25.1.0",
"@vitest/coverage-v8": "^4.0.18",
"commitizen": "^4.3.1",
"cz-conventional-changelog": "^3.3.0",
"esbuild": "^0.27.3",
"husky": "^9.1.0",
"lint-staged": "^16.2.7",
"typescript": "^5.7.3",
"vitest": "^4.0.18"
},
"lint-staged": {
"src/**/*.ts": [
"biome check --write --no-errors-on-unmatched"
]
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}