-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathpackage.json
More file actions
140 lines (140 loc) · 4.11 KB
/
Copy pathpackage.json
File metadata and controls
140 lines (140 loc) · 4.11 KB
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
{
"name": "easy-less",
"displayName": "Easy LESS",
"description": "Auto-compile LESS to CSS on save",
"version": "2.0.5",
"publisher": "mrcrowl",
"engines": {
"vscode": "^1.31.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onLanguage:less"
],
"repository": {
"type": "git",
"url": "https://github.com/mrcrowl/vscode-easy-less.git"
},
"main": "./out/easyLess",
"contributes": {
"commands": [
{
"command": "easyLess.compile",
"title": "Compile LESS to CSS"
},
{
"command": "extension.compileAllLess",
"title": "Compile All Less Files"
}
],
"configuration": {
"type": "object",
"title": "Easy LESS configuration",
"properties": {
"less.compile": {
"type": "object",
"description": "Configuration options for Easy LESS extension.",
"scope": "resource",
"properties": {
"compress": {
"type": "boolean",
"description": "Compress .css files? (removes unnecessary white-space)",
"default": false
},
"ieCompat": {
"type": "boolean",
"description": "IE8 compatiblity mode? (restricts size of data-uri to 32KB)",
"default": true
},
"sourceMap": {
"type": "boolean",
"description": "Should .map files be generated?",
"default": false
},
"sourceMapFileInline": {
"type": "boolean",
"description": "Should source maps be inlined within the .css file? (requires sourceMap: true)",
"default": false
},
"out": {
"type": [
"boolean",
"string",
"null"
],
"description": "Default 'out' setting. Set to false to default to no output.",
"default": null
},
"outExt": {
"type": "string",
"description": "The file extension to use for generated .css files",
"default": ".css"
},
"main": {
"type": [
"string",
"array"
],
"description": "Compile specific .less file(s) when any .less file is saved.",
"default": "main.less"
},
"relativeUrls": {
"type": "boolean",
"description": "Rewrite URLs from imported files, relative to the importing file (default: false)",
"default": false
},
"javascriptEnabled": {
"type": "boolean",
"description": "Enable inline javasript in less files within backticks (`) (default: false)",
"default": false
},
"autoprefixer": {
"type": [
"string",
"array",
"null"
],
"description": "The 'browsers' argument for autoprefixer plugin (see https://github.com/ai/browserslist#queries)",
"default": "> 5%, last 2 Chrome versions, not ie 6-9"
},
"math": {
"type": "string",
"description": "The `math` mode used by less. Default is `parens-division` (see http://lesscss.org/usage/#less-options-math)",
"oneOf": [
"parens-division",
"parens",
"always",
"strict",
"strict-legacy"
],
"default": "parens-division"
}
}
}
}
}
},
"scripts": {
"vscode:prepublish": "tsc -p ./",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./"
},
"icon": "icon.png",
"galleryBanner": {
"color": "#667",
"theme": "dark"
},
"dependencies": {
"less": "4.5.1",
"less-plugin-autoprefix": "^2.0.0"
},
"devDependencies": {
"@types/less": "^3.0.2",
"@types/node": "^14.18.22",
"@types/vscode": "^1.31.0",
"typescript": "^4.7.4",
"vitest": "^0.18.0"
}
}