vscode/extensions/git/package.json

84 lines
1.7 KiB
JSON
Raw Normal View History

{
2016-10-12 14:37:06 +00:00
"name": "git",
"publisher": "vscode",
"displayName": "git",
"description": "Git",
"version": "0.0.1",
"engines": {
"vscode": "^1.5.0"
},
2016-11-24 15:24:32 +00:00
"enableProposedApi": true,
2016-10-12 14:37:06 +00:00
"categories": [
"Other"
],
"activationEvents": [
"*"
],
"main": "./out/main",
"scripts": {
2016-11-23 11:03:23 +00:00
"compile": "gulp compile-extension:git",
"watch": "gulp watch-extension:git"
2016-10-12 14:37:06 +00:00
},
"contributes": {
2016-11-25 12:08:41 +00:00
"commands": [
{
"command": "git.refresh",
"title": "Git: Refresh",
"category": "Git",
"icon": {
"light": "resources/icons/light/refresh.svg",
"dark": "resources/icons/dark/refresh.svg"
}
}
],
"menus": {
"scm/title": [
{
"command": "git.refresh",
"group": "navigation"
}
]
},
2016-10-12 14:37:06 +00:00
"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"
}
]
},
"dependencies": {
"denodeify": "^1.2.1",
"lodash": "^4.17.2"
}
2016-11-23 11:03:23 +00:00
}