-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
44 lines (44 loc) · 971 Bytes
/
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
{
"name": "browserslist",
"displayName": "browserslist",
"description": "Syntax highlight for browserslist files",
"version": "1.1.0",
"publisher": "webben",
"icon": "icon.png",
"scripts": {
"publish": "npx vsce publish --githubBranch main"
},
"repository": {
"type": "git",
"url": "https://github.com/browserslist/browserslist-vscode.git"
},
"engines": {
"vscode": "^1.51.0"
},
"categories": [
"Programming Languages"
],
"contributes": {
"languages": [
{
"id": "browserslist",
"aliases": [
"Browserslist",
"browserslist"
],
"filenames": [
".browserslistrc",
"browserslist"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "browserslist",
"scopeName": "text.browserslist",
"path": "./syntaxes/browserslist.tmLanguage.json"
}
]
}
}