-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.5 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.5 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
{
"name": "loopbreaker",
"displayName": "LoopBreaker",
"description": "Detect repeated failed fix loops and highlight changes likely causing breaks.",
"version": "0.1.0",
"publisher": "your-name",
"engines": { "vscode": "^1.70.0" },
"activationEvents": [
"onStartupFinished",
"onCommand:loopbreaker.openPanel",
"onCommand:loopbreaker.analyzeLastBreak"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{ "command": "loopbreaker.openPanel", "title": "LoopBreaker: Open Panel" },
{ "command": "loopbreaker.analyzeLastBreak", "title": "LoopBreaker: Analyze Last Break" }
],
"configuration": {
"title": "LoopBreaker",
"properties": {
"loopbreaker.maxWindowSeconds": {
"type": "number",
"default": 900,
"description": "Sliding window (seconds) to watch for repeated attempts."
},
"loopbreaker.minRepeats": {
"type": "number",
"default": 3,
"description": "How many similar attempts before warning."
},
"loopbreaker.normalizeWhitespace": {
"type": "boolean",
"default": true,
"description": "Normalize whitespace/comments when hashing edits."
}
}
}
},
"scripts": {
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"vscode:prepublish": "npm run compile"
},
"devDependencies": {
"@types/node": "^20.12.7",
"typescript": "^5.4.0",
"vsce": "^3.0.0",
"vscode": "^1.1.41"
}
}