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