-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
151 lines (151 loc) · 5.25 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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
{
"name": "edit-phosphor",
"description": "Shows a phosphor afterglow for edited text",
"version": "0.7.0",
"publisher": "rbeesley",
"author": "Ryan Beesley (https://github.com/rbeesley)",
"contributors": [
"Rich Somerfield (https://github.com/richie5um)",
"Phil Hindle (https://github.com/phindle)",
"Ryan Beesley (https://github.com/rbeesley)"
],
"license": "MIT",
"displayName": "Edit Phosphor",
"icon": "resources/icon.svg",
"homepage": "https://github.com/rbeesley/vscode-edit-phosphor",
"repository": {
"type": "git",
"url": "https://github.com/rbeesley/vscode-edit-phosphor"
},
"bugs": {
"url": "https://github.com/rbeesley/vscode-edit-phosphor/issues"
},
"engines": {
"vscode": "^1.34.0"
},
"categories": [
"Other"
],
"activationEvents": [
"*"
],
"main": "./out/extension",
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./"
},
"devDependencies": {
"@types/node": "^13.13.4",
"@types/vscode": "^1.44.0",
"tslint": "^5.19.0",
"typescript": "^3.8.3",
"vscode-test": "^1.3.0"
},
"dependencies": {
"@types/lodash": "^4.14.150",
"lodash": "^4.15.0"
},
"contributes": {
"commands": [
{
"command": "editPhosphor.enable",
"title": "Edit Phosphor Enable"
},
{
"command": "editPhosphor.disable",
"title": "Edit Phosphor Disable"
}
],
"configuration": {
"type": "object",
"properties": {
"editPhosphor.enabled": {
"type": "boolean",
"default": true,
"description": "Enable/disable Edit Phosphor extension"
},
"editPhosphor.color": {
"type": "string",
"default": "0,255,0",
"description": "Set the color of the phosphor trail (i.e. in R,G,B format)"
},
"editPhosphor.colorLight": {
"type": "string",
"default": null,
"description": "Set the color of the phosphor trail for light themes, overrides phosphor color"
},
"editPhosphor.colorDark": {
"type": "string",
"default": null,
"description": "Set the color of the phosphor trail for dark themes, overrides phosphor color"
},
"editPhosphor.smoothstep": {
"type": "boolean",
"default": true,
"description": "Use smoothstep for fadeout rate"
},
"editPhosphor.smoothSteps": {
"type": "number",
"default": 10,
"description": "The number of smoothstep steps to show"
},
"editPhosphor.smoothstepXStart": {
"type": "number",
"default": 1,
"description": "X_Start"
},
"editPhosphor.smoothstepYStart": {
"type": "number",
"default": 0,
"description": "Y_Start"
},
"editPhosphor.smoothstepXEnd": {
"type": "number",
"default": -1,
"description": "X_End"
},
"editPhosphor.smoothstepYEnd": {
"type": "number",
"default": 2,
"description": "Y_End"
},
"editPhosphor.smoothstepYMax": {
"type": "number",
"default": 1,
"description": "Y_Max"
},
"editPhosphor.smoothstepYMin": {
"type": "number",
"default": 0,
"description": "Y_Min"
},
"editPhosphor.fadeMS": {
"type": "number",
"default": 100,
"description": "Set the fade out rate of the trail (in milliseconds)"
},
"editPhosphor.fadeStart": {
"type": "number",
"default": 0.5,
"description": "Set the fade start opacity (i.e. 0.3)"
},
"editPhosphor.fadeEnd": {
"type": "number",
"default": 0.0,
"description": "Set the fade end opacity (i.e. 0.0)"
},
"editPhosphor.fadeStep": {
"type": "number",
"default": 0.1,
"description": "Set the fade step (i.e. 0.1)"
},
"editPhosphor.redrawFrequency": {
"type": "number",
"default": 10,
"description": "Frequency that the redraw is performed - when trails are active"
}
}
}
}
}