-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
114 lines (113 loc) · 3.42 KB
/
package.json
File metadata and controls
114 lines (113 loc) · 3.42 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
113
114
{
"name": "ralph-runner",
"displayName": "ralph-runner",
"description": "Autonomous task runner — reads prd.json user stories, tracks progress inline, and drives Copilot Chat to execute each story in an automated loop",
"version": "0.0.3",
"publisher": "recent-graduates",
"repository": {
"type": "git",
"url": "https://github.com/anushibinj/vscode-copilot-ralph-runner.git"
},
"engines": {
"vscode": "^1.109.0"
},
"categories": [
"Other"
],
"activationEvents": ["onStartupFinished"],
"main": "./dist/extension.js",
"contributes": {
"commands": [
{
"command": "ralph-runner.start",
"title": "RALPH: Start"
},
{
"command": "ralph-runner.stop",
"title": "RALPH: Stop"
},
{
"command": "ralph-runner.status",
"title": "RALPH: Show Status"
},
{
"command": "ralph-runner.resetStep",
"title": "RALPH: Reset Story"
},
{
"command": "ralph-runner.openSettings",
"title": "RALPH: Open Settings"
},
{
"command": "ralph-runner.showMenu",
"title": "RALPH: Show Menu"
},
{
"command": "ralph-runner.quickStart",
"title": "RALPH: Generate PRD"
}
],
"configuration": {
"title": "RALPH Runner",
"properties": {
"ralph-runner.maxAutonomousLoops": {
"type": "number",
"default": 2,
"minimum": 1,
"description": "Maximum number of steps to execute per run before pausing."
},
"ralph-runner.loopDelayMs": {
"type": "number",
"default": 3000,
"minimum": 0,
"description": "Settle time in milliseconds between iterations."
},
"ralph-runner.copilotResponsePollMs": {
"type": "number",
"default": 5000,
"minimum": 1000,
"description": "How often (ms) to poll for Copilot idle state."
},
"ralph-runner.copilotTimeoutMs": {
"type": "number",
"default": 3600000,
"minimum": 30000,
"description": "Maximum time (ms) to wait for Copilot per step (default 1 hour)."
},
"ralph-runner.copilotMinWaitMs": {
"type": "number",
"default": 15000,
"minimum": 0,
"description": "Minimum time (ms) to wait for Copilot to start working before checking the step is complete."
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run package",
"compile": "npm run check-types && npm run lint && node esbuild.js",
"watch": "npm-run-all -p watch:*",
"watch:esbuild": "node esbuild.js --watch",
"watch:tsc": "tsc --noEmit --watch --project tsconfig.json",
"package": "npm run check-types && npm run lint && node esbuild.js --production",
"compile-tests": "tsc -p . --outDir out",
"watch-tests": "tsc -p . -w --outDir out",
"pretest": "npm run compile-tests && npm run compile && npm run lint",
"check-types": "tsc --noEmit",
"lint": "eslint src",
"test": "vscode-test"
},
"devDependencies": {
"@types/vscode": "^1.109.0",
"@types/mocha": "^10.0.10",
"@types/node": "22.x",
"typescript-eslint": "^8.54.0",
"eslint": "^9.39.2",
"esbuild": "^0.27.2",
"npm-run-all": "^4.1.5",
"typescript": "^5.9.3",
"@vscode/test-cli": "^0.0.12",
"@vscode/test-electron": "^2.5.2"
},
"icon": "images/ralph_runner.ico"
}