-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.3 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 2.3 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
{
"name": "ralphctl",
"version": "0.4.0",
"description": "Agent harness for long-running AI coding tasks — orchestrates Claude Code & GitHub Copilot across repositories",
"homepage": "https://github.com/lukas-grigis/ralphctl",
"type": "module",
"license": "MIT",
"author": "Lukas Grigis",
"repository": {
"type": "git",
"url": "https://github.com/lukas-grigis/ralphctl.git"
},
"bugs": {
"url": "https://github.com/lukas-grigis/ralphctl/issues"
},
"keywords": [
"cli",
"agent-harness",
"claude-code",
"github-copilot",
"ai-coding",
"task-orchestration",
"anthropic",
"developer-tools",
"long-running-agents",
"generator-evaluator"
],
"bin": {
"ralphctl": "./dist/cli.mjs"
},
"files": [
"dist/"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsup && mkdir -p dist/prompts && cp src/integration/ai/prompts/*.md dist/prompts/",
"prepublishOnly": "pnpm build",
"dev": "tsx src/application/entrypoint.ts",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"prepare": "husky"
},
"packageManager": "pnpm@10.29.3",
"engines": {
"node": ">=24.0.0"
},
"dependencies": {
"@inkjs/ui": "^2.0.0",
"colorette": "^2.0.20",
"commander": "^14.0.3",
"gradient-string": "^3.0.0",
"ink": "^7.0.1",
"react": "^19.2.5",
"tabtab": "^3.0.2",
"typescript-result": "^3.5.2",
"zod": "^4.3.6"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^25.6.0",
"@types/react": "^19.2.14",
"@types/tabtab": "^3.0.4",
"@vitest/coverage-v8": "^4.1.4",
"eslint": "^10.2.0",
"eslint-config-prettier": "^10.1.8",
"globals": "^17.5.0",
"husky": "^9.1.7",
"ink-testing-library": "^4.0.0",
"lint-staged": "^16.4.0",
"prettier": "^3.8.3",
"tsup": "^8.5.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.58.2",
"vitest": "^4.1.4"
},
"lint-staged": {
"*.ts": [
"eslint --cache --fix",
"prettier --write"
],
"*.{md,json,yml,yaml}": "prettier --write"
}
}