This repository has been archived by the owner on Mar 10, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 170
/
Copy pathpackage.json
193 lines (193 loc) · 7.38 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
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
{
"name": "live-sass",
"displayName": "Live Sass Compiler",
"description": "Compile Sass or Scss to CSS at realtime with live browser reload.",
"version": "3.0.0",
"publisher": "ritwickdey",
"author": {
"name": "Ritwick Dey",
"email": "[email protected]",
"url": "http://twitter.com/Dey_Ritwick"
},
"engines": {
"vscode": "^1.0.0"
},
"keywords": [
"SASS",
"SCSS",
"Compiler",
"Transpiler",
"SASS Compiler"
],
"categories": [
"Other",
"Extension Packs"
],
"preview": true,
"galleryBanner": {
"color": "#41205f",
"theme": "dark"
},
"activationEvents": [
"workspaceContains:**/*.s[ac]ss",
"onLanguage:scss",
"onLanguage:sass"
],
"main": "./out/src/extension",
"contributes": {
"commands": [
{
"command": "liveSass.command.watchMySass",
"title": "Watch Sass",
"category": "Live Sass"
},
{
"command": "liveSass.command.donotWatchMySass",
"title": "Stop Watching",
"category": "Live Sass"
},
{
"command": "liveSass.command.oneTimeCompileSass",
"title": "Compile Sass - Without Watch Mode",
"category": "Live Sass"
},
{
"command": "liveSass.command.openOutputWindow",
"title": "Open Live Sass Output Window",
"category": "Live Sass"
}
],
"configuration": {
"title": "Live Sass Compile Config",
"properties": {
"liveSassCompile.settings.formats": {
"type": "array",
"default": [
{
"format": "expanded",
"extensionName": ".css",
"savePath": null
}
],
"minItems": 1,
"items": {
"type": "object",
"properties": {
"format": {
"description": "Style of exported css",
"type": "string",
"enum": [
"expanded",
"compact",
"compressed",
"nested"
],
"default": "expanded"
},
"extensionName": {
"description": "Extension Name of exported css",
"type": "string",
"enum": [
".css",
".min.css"
],
"default": ".css"
},
"savePath": {
"description": "Set the save location of exported CSS.\n Set the relative path from Workspace Root.\n '/' stands for your workspace root. \n Example: /subfolder1/subfolder2. (NOTE: if folder does not exist, folder will be created as well).",
"type": [
"string",
"null"
],
"pattern": "^[\\~|/|\\\\]",
"default": null
}
},
"additionalProperties": false,
"required": [
"format",
"extensionName"
]
},
"description": "Set your exported CSS Styles, Formats & save location."
},
"liveSassCompile.settings.excludeList": {
"type": "array",
"default": [
"**/node_modules/**",
".vscode/**"
],
"description": "All Sass/Scss files inside the folders will be excluded. \n\nExamples: \n'**/node_modules/**',\n'.vscode/**', \n'.history/**' \n\nGlob Patterns are accepted."
},
"liveSassCompile.settings.includeItems": {
"type": [
"array",
"null"
],
"default": null,
"description": "This setting is useful when you deals with only few of sass files. Only mentioned Sass files will be included. \nNOTE: No need to include partial sass files."
},
"liveSassCompile.settings.generateMap": {
"type": [
"boolean"
],
"default": true,
"description": "Set it as `false` if you don't want `.map` file for compiled CSS. \nDefault is `true`"
},
"liveSassCompile.settings.autoprefix": {
"type": [
"array",
"null"
],
"default": [
"> 1%",
"last 2 versions"
],
"description": "Automatically add vendor prefixes to unsupported CSS properties (e. g. transform -> -ms-transform). Specify what browsers to target with an array of strings (uses [Browserslist](https://github.com/ai/browserslist)). Pass `null` to turn off. \nDefault is `null`"
},
"liveSassCompile.settings.showOutputWindow": {
"type": "boolean",
"default": true,
"description": "Set this to `false` if you do not want the output window to show.\nNote: You can use the command palette to open the Live Sass output window.\nDefault is `true`"
}
}
}
},
"license": "MIT",
"icon": "images/icon2.png",
"bugs": {
"url": "https://github.com/ritwickdey/vscode-live-sass-compiler/issues",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/ritwickdey/vscode-live-sass-compiler.git"
},
"homepage": "https://ritwickdey.github.io/vscode-live-sass-compiler/",
"extensionDependencies": [
"ritwickdey.LiveServer"
],
"scripts": {
"vscode:prepublish": "tsc -p ./",
"compile": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "node ./node_modules/vscode/bin/test"
},
"dependencies": {
"autoprefixer": "^7.2.6",
"glob": "^7.1.2",
"postcss": "^6.0.23",
"sasslib": "file:lib\\sasslib"
},
"devDependencies": {
"typescript": "^2.4.1",
"vscode": "^1.0.0",
"mocha": "^2.3.3",
"@types/node": "^6.0.40",
"@types/mocha": "^2.2.32"
},
"announcement": {
"onVersion": "3.0.0",
"message": "[email protected]: Fixes 8 digit Hex, grid names and many more."
}
}