Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
microsoft
GitHub Repository: microsoft/vscode
Path: blob/main/extensions/diff/package.json
3309 views
1
{
2
"name": "diff",
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 textmate/diff.tmbundle Syntaxes/Diff.plist ./syntaxes/diff.tmLanguage.json"
13
},
14
"categories": ["Programming Languages"],
15
"contributes": {
16
"languages": [
17
{
18
"id": "diff",
19
"aliases": [
20
"Diff",
21
"diff"
22
],
23
"extensions": [
24
".diff",
25
".patch",
26
".rej"
27
],
28
"configuration": "./language-configuration.json"
29
}
30
],
31
"grammars": [
32
{
33
"language": "diff",
34
"scopeName": "source.diff",
35
"path": "./syntaxes/diff.tmLanguage.json"
36
}
37
]
38
}
39
}
40
41