-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
105 lines (105 loc) · 3.5 KB
/
package.json
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
{
"name": "snake-trail",
"description": "Shows a snake trail for your edited text",
"version": "0.6.0",
"publisher": "richie5um2",
"author": "Rich Somerfield",
"license": "MIT",
"displayName": "Snake Trail",
"icon": "resources/icon.svg",
"homepage": "https://github.com/richie5um/vscode-snake-trail",
"repository": {
"type": "git",
"url": "https://github.com/richie5um/vscode-snake-trail"
},
"bugs": {
"url": "https://github.com/richie5um/vscode-snake-trail/issues"
},
"engines": {
"vscode": "0.10.x"
},
"categories": [
"Other"
],
"activationEvents": [
"*"
],
"main": "./out/extension",
"scripts": {
"vscode:prepublish": "node ./node_modules/vscode/bin/compile",
"compile": "node ./node_modules/vscode/bin/compile -watch -p ./"
},
"devDependencies": {
"vscode": "0.10.x",
"typescript": "^1.6.2"
},
"dependencies": {
"lodash": "^4.15.0"
},
"contributes": {
"commands": [
{
"command": "snakeTrail.enable",
"title": "SnakeTrail Enable"
},
{
"command": "snakeTrail.disable",
"title": "SnakeTrail Disable"
},
{
"command": "snakeTrail.refresh",
"title": "SnakeTrail Refresh (re-read configuration)"
}
],
"configuration": {
"type": "object",
"properties": {
"snakeTrail.enabled": {
"type": "boolean",
"default": true,
"description": "Enable/disable SnakeTrail"
},
"snakeTrail.color": {
"type": "string",
"default": "0,255,0",
"description": "Set the color of the snake trail (i.e. in R,G,B format)"
},
"snakeTrail.colorLight": {
"type": "string",
"default": null,
"description": "Set the color of the snake trail for light themes, overrides snakeColor"
},
"snakeTrail.colorDark": {
"type": "string",
"default": null,
"description": "Set the color of the snake trail for dark themes, overrides snakeColor"
},
"snakeTrail.fadeMS": {
"type": "number",
"default": 100,
"description": "Set the fade out rate of the trail (in milliseconds)"
},
"snakeTrail.fadeStart": {
"type": "number",
"default": 0.7,
"description": "Set the fade start opacity (i.e. 0.7)"
},
"snakeTrail.fadeEnd": {
"type": "number",
"default": 0,
"description": "Set the fade end opacity (i.e. 0.0)"
},
"snakeTrail.fadeStep": {
"type": "number",
"default": 0.1,
"description": "Set the fade step (i.e. 0.1)"
},
"snakeTrail.redrawFrequency": {
"type": "number",
"default": 10,
"description": "Frequency that the redraw is performed - when trails are active"
}
}
}
}
}