mirror of
https://github.com/microsoft/vscode.git
synced 2025-12-27 05:37:45 +00:00
51 lines
1.1 KiB
JSON
51 lines
1.1 KiB
JSON
{
|
|
"name": "git",
|
|
"displayName": "git",
|
|
"description": "Git",
|
|
"version": "0.0.1",
|
|
"publisher": "joaomoreno",
|
|
"engines": {
|
|
"vscode": "^1.5.0"
|
|
},
|
|
"categories": [
|
|
"Other"
|
|
],
|
|
"activationEvents": [
|
|
"*"
|
|
],
|
|
"main": "./out/extension",
|
|
"contributes": {
|
|
"commands": [],
|
|
"languages": [
|
|
{
|
|
"id": "git-commit",
|
|
"aliases": ["Git Commit Message", "git-commit"],
|
|
"filenames": ["COMMIT_EDITMSG", "MERGE_MSG"],
|
|
"configuration": "./git-commit.language-configuration.json"
|
|
},
|
|
{
|
|
"id": "git-rebase",
|
|
"aliases": ["Git Rebase Message", "git-rebase"],
|
|
"filenames": ["git-rebase-todo"],
|
|
"configuration": "./git-rebase.language-configuration.json"
|
|
}
|
|
],
|
|
"grammars": [
|
|
{
|
|
"language": "git-commit",
|
|
"scopeName": "text.git-commit",
|
|
"path": "./syntaxes/git-commit.tmLanguage"
|
|
},
|
|
{
|
|
"language": "git-rebase",
|
|
"scopeName": "text.git-rebase",
|
|
"path": "./syntaxes/git-rebase.tmLanguage"
|
|
}
|
|
]
|
|
},
|
|
"scripts": {
|
|
"vscode:prepublish": "tsc -p ./",
|
|
"compile": "tsc -watch -p ./",
|
|
"postinstall": "node ./node_modules/vscode/bin/install"
|
|
}
|
|
} |