-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
112 lines (112 loc) · 2.42 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
{
"name": "postcss",
"version": "1.0.8",
"displayName": "PostCSS Language Support",
"description": "Syntax highlighting for modern and experimental CSS in VSCode",
"author": "Jonathan Neal <[email protected]>",
"publisher": "csstools",
"license": "CC0-1.0",
"repository": {
"type": "git",
"url": "https://github.com/csstools/postcss-language.git"
},
"homepage": "https://github.com/csstools/postcss-language#readme",
"bugs": "https://github.com/csstools/postcss-language/issues",
"icon": "icon.png",
"galleryBanner": {
"color": "#293845",
"theme": "dark"
},
"engines": {
"vscode": "^1.18.0"
},
"categories": [
"Programming Languages"
],
"contributes": {
"languages": [
{
"id": "postcss",
"configuration": "./postcss.language.configuration.json",
"aliases": [
"PostCSS",
"pcss"
],
"extensions": [
".css",
".pcss",
".postcss"
],
"mimetypes": [
"text/css",
"text/x-pcss",
"text/pcss"
]
}
],
"grammars": [
{
"scopeName": "source.css",
"path": "./syntaxes/source.css.tmLanguage.json",
"language": "postcss"
},
{
"scopeName": "source.postcss",
"injectTo": [
"source.css"
],
"path": "./syntaxes/source.postcss.tmLanguage.json"
},
{
"scopeName": "source.css.postcss",
"injectTo": [
"source.css"
],
"path": "./syntaxes/source.css.postcss.tmLanguage.json"
},
{
"scopeName": "text.html.markdown.css",
"path": "./syntaxes/text.html.markdown.css.tmLanguage.json",
"injectTo": [
"text.html.markdown"
],
"embeddedLanguages": {
"meta.embedded.block.css": "postcss"
}
},
{
"scopeName": "comment.injection.css",
"path": "./syntaxes/comment.injection.css.tmLanguage.json",
"injectTo": [
"source.css"
]
}
]
},
"keywords": [
"css",
"cssnext",
"csswg",
"experimental",
"future",
"grammar",
"html",
"language",
"logical",
"markdown",
"marko",
"md",
"modern",
"next",
"postcss",
"postcss-preset-env",
"spec",
"specification",
"stage",
"style",
"syntax",
"tag",
"vscode",
"w3c"
]
}