-
Notifications
You must be signed in to change notification settings - Fork 70
/
package.json
81 lines (81 loc) · 1.68 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
{
"name": "vscode-custom-css",
"displayName": "Custom CSS and JS Loader",
"description": "Custom CSS and JS for Visual Studio Code",
"version": "7.4.0",
"publisher": "be5invis",
"author": {
"email": "[email protected]",
"name": "Belleve Invis",
"url": "https://typeof.net"
},
"engines": {
"vscode": "^1.93.0"
},
"categories": [
"Other",
"Themes"
],
"repository": {
"type": "git",
"url": "https://github.com/be5invis/vscode-custom-css"
},
"bugs": {
"url": "https://github.com/be5invis/vscode-custom-css/issues"
},
"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": "Reload Custom CSS and JS"
}
],
"configuration": {
"title": "Custom CSS/JS Configuration",
"properties": {
"vscode_custom_css.imports": {
"description": "Custom CSS/JS files, as an array of URLs, not file paths",
"type": "array",
"default": []
},
"vscode_custom_css.statusbar": {
"description": "Enable Status Indicator",
"type": "boolean",
"default": true
}
}
}
},
"devDependencies": {
"eslint": "^8.21.0",
"eslint-config-prettier": "^8.5.0"
},
"dependencies": {
"file-url": "^3.0.0",
"node-fetch": "^2.0.0",
"uuid": "^8.3.2"
},
"extensionKind": [
"ui"
],
"scripts": {
"vscode:prepublish": "npx -y rimraf node_modules && npm install --prod"
}
}