Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
microsoft
GitHub Repository: microsoft/vscode
Path: blob/main/extensions/css/package.json
3309 views
1
{
2
"name": "css",
3
"displayName": "%displayName%",
4
"description": "%description%",
5
"version": "1.0.0",
6
"publisher": "vscode",
7
"license": "MIT",
8
"engines": {
9
"vscode": "0.10.x"
10
},
11
"scripts": {
12
"update-grammar": "node ../node_modules/vscode-grammar-updater/bin microsoft/vscode-css grammars/css.cson ./syntaxes/css.tmLanguage.json"
13
},
14
"categories": ["Programming Languages"],
15
"contributes": {
16
"languages": [
17
{
18
"id": "css",
19
"aliases": [
20
"CSS",
21
"css"
22
],
23
"extensions": [
24
".css"
25
],
26
"mimetypes": [
27
"text/css"
28
],
29
"configuration": "./language-configuration.json"
30
}
31
],
32
"grammars": [
33
{
34
"language": "css",
35
"scopeName": "source.css",
36
"path": "./syntaxes/css.tmLanguage.json",
37
"tokenTypes": {
38
"meta.function.url string.quoted": "other"
39
}
40
}
41
]
42
},
43
"repository": {
44
"type": "git",
45
"url": "https://github.com/microsoft/vscode.git"
46
}
47
}
48
49