forked from be5invis/vscode-custom-css
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.05 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
{
"name": "vscode-custom-css",
"displayName": "Custom CSS and JS Loader",
"description": "Custom CSS and JS for Visual Studio Code",
"version": "2.0.1",
"publisher": "be5invis",
"author": {
"email": "[email protected]",
"name": "Belleve Invis",
"url": "https://typeof.net"
},
"engines": {
"vscode": "^1.3.0"
},
"categories": [
"Other",
"Themes"
],
"preview": true,
"icon": "images/logo.png",
"galleryBanner": {
"color": "#EEEEEE"
},
"activationEvents": [
"*"
],
"main": "./src/extension",
"contributes": {
"commands": [
{
"command": "extension.installCustomCSS",
"title": "Enable Custom CSS and JS"
},
{
"command": "extension.uninstallCustomCSS",
"title": "Disable Custom CSS and JS"
},
{
"command": "extension.updateCustomCSS",
"title": "Update Custom CSS and JS"
}
]
},
"devDependencies": {
"mustache": "^2.2.1",
"ncp": "^2.0.0",
"underscore": "^1.8.3",
"vscode": "^0.11.0"
},
"dependencies": {
"extract-zip": "^1.5.0",
"replace-in-file": "^1.0.2",
"request": "^2.72.0"
}
}