Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
microsoft
GitHub Repository: microsoft/vscode
Path: blob/main/extensions/git-base/package.json
3309 views
1
{
2
"name": "git-base",
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
"categories": [
12
"Other"
13
],
14
"activationEvents": [
15
"*"
16
],
17
"main": "./out/extension.js",
18
"browser": "./dist/browser/extension.js",
19
"icon": "resources/icons/git.png",
20
"scripts": {
21
"compile": "gulp compile-extension:git-base",
22
"watch": "gulp watch-extension:git-base",
23
"update-grammar": "node ./build/update-grammars.js"
24
},
25
"capabilities": {
26
"virtualWorkspaces": true,
27
"untrustedWorkspaces": {
28
"supported": true
29
}
30
},
31
"contributes": {
32
"commands": [
33
{
34
"command": "git-base.api.getRemoteSources",
35
"title": "%command.api.getRemoteSources%",
36
"category": "Git Base API"
37
}
38
],
39
"menus": {
40
"commandPalette": [
41
{
42
"command": "git-base.api.getRemoteSources",
43
"when": "false"
44
}
45
]
46
},
47
"languages": [
48
{
49
"id": "git-commit",
50
"aliases": [
51
"Git Commit Message",
52
"git-commit"
53
],
54
"filenames": [
55
"COMMIT_EDITMSG",
56
"MERGE_MSG"
57
],
58
"configuration": "./languages/git-commit.language-configuration.json"
59
},
60
{
61
"id": "git-rebase",
62
"aliases": [
63
"Git Rebase Message",
64
"git-rebase"
65
],
66
"filenames": [
67
"git-rebase-todo"
68
],
69
"filenamePatterns": [
70
"**/rebase-merge/done"
71
],
72
"configuration": "./languages/git-rebase.language-configuration.json"
73
},
74
{
75
"id": "ignore",
76
"aliases": [
77
"Ignore",
78
"ignore"
79
],
80
"extensions": [
81
".gitignore_global",
82
".gitignore",
83
".git-blame-ignore-revs"
84
],
85
"configuration": "./languages/ignore.language-configuration.json"
86
}
87
],
88
"grammars": [
89
{
90
"language": "git-commit",
91
"scopeName": "text.git-commit",
92
"path": "./syntaxes/git-commit.tmLanguage.json"
93
},
94
{
95
"language": "git-rebase",
96
"scopeName": "text.git-rebase",
97
"path": "./syntaxes/git-rebase.tmLanguage.json"
98
},
99
{
100
"language": "ignore",
101
"scopeName": "source.ignore",
102
"path": "./syntaxes/ignore.tmLanguage.json"
103
}
104
]
105
},
106
"devDependencies": {
107
"@types/node": "22.x"
108
},
109
"repository": {
110
"type": "git",
111
"url": "https://github.com/microsoft/vscode.git"
112
}
113
}
114
115