mirror of
https://github.com/microsoft/vscode.git
synced 2025-12-25 04:36:23 +00:00
* chore: update electron@25.3.0 * ci: update NodeTool version * chore: update @types/node * add more common types to layers checker * chore: update debian dependencies * chore: update rpm dependencies * fix: use legacy dns result order of Node.js * ci: remove deprecated always-auth npm config Refs npm/cli@72a7eeb * chore: update deb and rpm dependencies * chore: update armhf rpm dependencies * chore: update x64 debian dependencies * chore: update x64 rpm dependencies * chore: update electron@25.3.1 * chore: update electron@25.4.0 * chore: bump distro * chore: bump distro --------- Co-authored-by: Benjamin Pasero <benjamin.pasero@microsoft.com>
113 lines
2.5 KiB
JSON
113 lines
2.5 KiB
JSON
{
|
|
"name": "git-base",
|
|
"displayName": "%displayName%",
|
|
"description": "%description%",
|
|
"version": "1.0.0",
|
|
"publisher": "vscode",
|
|
"license": "MIT",
|
|
"engines": {
|
|
"vscode": "0.10.x"
|
|
},
|
|
"categories": [
|
|
"Other"
|
|
],
|
|
"activationEvents": [
|
|
"*"
|
|
],
|
|
"main": "./out/extension.js",
|
|
"browser": "./dist/browser/extension.js",
|
|
"icon": "resources/icons/git.png",
|
|
"scripts": {
|
|
"compile": "gulp compile-extension:git-base",
|
|
"watch": "gulp watch-extension:git-base",
|
|
"update-grammar": "node ./build/update-grammars.js"
|
|
},
|
|
"capabilities": {
|
|
"virtualWorkspaces": true,
|
|
"untrustedWorkspaces": {
|
|
"supported": true
|
|
}
|
|
},
|
|
"contributes": {
|
|
"commands": [
|
|
{
|
|
"command": "git-base.api.getRemoteSources",
|
|
"title": "%command.api.getRemoteSources%",
|
|
"category": "Git Base API"
|
|
}
|
|
],
|
|
"menus": {
|
|
"commandPalette": [
|
|
{
|
|
"command": "git-base.api.getRemoteSources",
|
|
"when": "false"
|
|
}
|
|
]
|
|
},
|
|
"languages": [
|
|
{
|
|
"id": "git-commit",
|
|
"aliases": [
|
|
"Git Commit Message",
|
|
"git-commit"
|
|
],
|
|
"filenames": [
|
|
"COMMIT_EDITMSG",
|
|
"MERGE_MSG"
|
|
],
|
|
"configuration": "./languages/git-commit.language-configuration.json"
|
|
},
|
|
{
|
|
"id": "git-rebase",
|
|
"aliases": [
|
|
"Git Rebase Message",
|
|
"git-rebase"
|
|
],
|
|
"filenames": [
|
|
"git-rebase-todo"
|
|
],
|
|
"filenamePatterns": [
|
|
"**/rebase-merge/done"
|
|
],
|
|
"configuration": "./languages/git-rebase.language-configuration.json"
|
|
},
|
|
{
|
|
"id": "ignore",
|
|
"aliases": [
|
|
"Ignore",
|
|
"ignore"
|
|
],
|
|
"extensions": [
|
|
".gitignore_global",
|
|
".gitignore"
|
|
],
|
|
"configuration": "./languages/ignore.language-configuration.json"
|
|
}
|
|
],
|
|
"grammars": [
|
|
{
|
|
"language": "git-commit",
|
|
"scopeName": "text.git-commit",
|
|
"path": "./syntaxes/git-commit.tmLanguage.json"
|
|
},
|
|
{
|
|
"language": "git-rebase",
|
|
"scopeName": "text.git-rebase",
|
|
"path": "./syntaxes/git-rebase.tmLanguage.json"
|
|
},
|
|
{
|
|
"language": "ignore",
|
|
"scopeName": "source.ignore",
|
|
"path": "./syntaxes/ignore.tmLanguage.json"
|
|
}
|
|
]
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "18.x"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/microsoft/vscode.git"
|
|
}
|
|
}
|