vscode/extensions/git/package.json

163 lines
3.6 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",
2016-11-25 12:22:37 +00:00
"title": "Refresh",
2016-11-25 12:08:41 +00:00
"category": "Git",
"icon": {
"light": "resources/icons/light/refresh.svg",
"dark": "resources/icons/dark/refresh.svg"
}
2016-11-28 10:08:37 +00:00
},
{
2016-12-02 10:16:09 +00:00
"command": "git.open",
2016-11-28 10:08:37 +00:00
"title": "Open Change",
"category": "Git"
2016-12-01 14:12:27 +00:00
},
{
"command": "git.stage",
"title": "Stage",
2016-12-01 15:09:14 +00:00
"category": "Git",
"icon": {
"light": "resources/icons/light/stage.svg",
"dark": "resources/icons/dark/stage.svg"
}
2016-12-01 14:12:27 +00:00
},
{
"command": "git.stage-all",
"title": "Stage All",
2016-12-01 15:09:14 +00:00
"category": "Git",
"icon": {
"light": "resources/icons/light/stage.svg",
"dark": "resources/icons/dark/stage.svg"
}
2016-12-01 14:12:27 +00:00
},
{
"command": "git.unstage",
"title": "Unstage",
2016-12-01 15:09:14 +00:00
"category": "Git",
"icon": {
"light": "resources/icons/light/unstage.svg",
"dark": "resources/icons/dark/unstage.svg"
}
2016-12-01 14:12:27 +00:00
},
{
"command": "git.unstage-all",
"title": "Unstage All",
2016-12-01 15:09:14 +00:00
"category": "Git",
"icon": {
"light": "resources/icons/light/unstage.svg",
"dark": "resources/icons/dark/unstage.svg"
}
2016-11-25 12:08:41 +00:00
}
],
"menus": {
2016-12-01 14:12:27 +00:00
"scm/git/title": [
2016-11-25 12:08:41 +00:00
{
"command": "git.refresh",
2016-12-01 14:12:27 +00:00
"group": "navigation"
}
],
2016-12-02 11:25:41 +00:00
"scm/git/index/title/context": [
2016-12-01 15:09:14 +00:00
{
2016-12-02 11:25:41 +00:00
"command": "git.unstage-all"
},
2016-12-01 14:12:27 +00:00
{
"command": "git.unstage-all",
2016-12-02 11:25:41 +00:00
"group": "inline"
2016-12-01 14:12:27 +00:00
}
],
2016-12-02 11:25:41 +00:00
"scm/git/index/context": [
2016-12-01 15:09:14 +00:00
{
2016-12-02 11:25:41 +00:00
"command": "git.unstage"
},
2016-12-01 14:12:27 +00:00
{
"command": "git.unstage",
2016-12-02 11:25:41 +00:00
"group": "inline"
2016-12-01 14:12:27 +00:00
}
],
2016-12-02 11:25:41 +00:00
"scm/git/workingTree/title/context": [
2016-12-01 15:09:14 +00:00
{
2016-12-02 11:25:41 +00:00
"command": "git.stage-all"
},
2016-12-01 14:12:27 +00:00
{
"command": "git.stage-all",
2016-12-02 11:25:41 +00:00
"group": "inline"
2016-11-28 10:08:37 +00:00
}
],
2016-12-02 11:25:41 +00:00
"scm/git/workingTree/context": [
2016-12-01 15:09:14 +00:00
{
2016-12-02 11:25:41 +00:00
"command": "git.stage"
},
2016-11-28 10:08:37 +00:00
{
2016-12-01 14:12:27 +00:00
"command": "git.stage",
2016-12-02 11:25:41 +00:00
"group": "inline"
2016-11-25 12:08:41 +00:00
}
]
},
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": {
2016-11-29 16:09:55 +00:00
"core-decorators": "^0.14.0",
2016-10-12 14:37:06 +00:00
"denodeify": "^1.2.1",
2016-11-28 16:18:46 +00:00
"lodash": "^4.17.2",
"vscode-nls": "^2.0.1"
2016-10-12 14:37:06 +00:00
}
2016-11-29 16:09:55 +00:00
}