-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.27 KB
/
Copy pathpackage.json
File metadata and controls
83 lines (83 loc) · 2.27 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
{
"name": "heatscroll",
"displayName": "heatscroll",
"description": "Scroll bar heat map.",
"version": "0.0.4",
"publisher": "rthrfrd",
"engines": {
"vscode": "^1.95.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onStartupFinished"
],
"repository": {
"type": "git",
"url": "https://github.com/rthrfrd/heatscroll.git"
},
"main": "./extension.js",
"files": [],
"contributes": {
"commands": [{
"command": "heatscroll.toggle",
"title": "Heatscroll: Toggle"
}],
"configuration": {
"title": "Heatscroll",
"properties": {
"heatscroll.alpha": {
"type": "number",
"default": 0.66,
"description": "Maximum heat map opacity."
},
"heatscroll.decayRate": {
"type": "number",
"default": 0.001,
"description": "How quickly new heat map activity erases old heat map activity."
},
"heatscroll.decayIntervalMs": {
"type": "number",
"default": 1000,
"description": "How quickly the heat map decays without any activity."
},
"heatscroll.drawIntervalMs": {
"type": "number",
"default": 200,
"description": "How frequently the heat map is redrawn."
},
"heatscroll.lane": {
"type": "number",
"default": 2,
"description": "Which scroll bar lane the heat map occupies (L=1|C=2|R=4|F=7)."
},
"heatscroll.lineThreshold": {
"type": "number",
"default": 80,
"description": "Don't show heatmap for files with less lines than this."
},
"heatscroll.rgbEdit": {
"type": "string",
"default": "153,255,238",
"description": "Comma-separated RGB heat map color for editing."
},
"heatscroll.rgbScroll": {
"type": "string",
"default": "255,68,191",
"description": "Comma-separated RGB heat map color for scrolling."
}
}
}
},
"scripts": {},
"devDependencies": {
"@types/vscode": "^1.95.0",
"@types/mocha": "^10.0.9",
"@types/node": "20.x",
"eslint": "^9.13.0",
"@vscode/test-cli": "^0.0.10",
"@vscode/test-electron": "^2.4.1",
"@vscode/vsce": "^3.2.1"
}
}