mirror of
https://github.com/microsoft/vscode.git
synced 2026-05-01 05:51:32 +01:00
56 lines
1.1 KiB
JSON
56 lines
1.1 KiB
JSON
{
|
|
"name": "git-extended",
|
|
"displayName": "Git Extended",
|
|
"description": "Git Extended",
|
|
"enableProposedApi": true,
|
|
"version": "0.0.1",
|
|
"publisher": "rebornix",
|
|
"engines": {
|
|
"vscode": "^1.13.0"
|
|
},
|
|
"categories": [
|
|
"Other"
|
|
],
|
|
"activationEvents": [
|
|
"onView:commits",
|
|
"onView:stash",
|
|
"onView:pr"
|
|
],
|
|
"main": "./out/extension",
|
|
"contributes": {
|
|
"views": {
|
|
"explorer": [
|
|
{
|
|
"id": "pr",
|
|
"name": "Pull Requests"
|
|
}
|
|
]
|
|
},
|
|
"commands": [
|
|
{
|
|
"command": "pr.refreshList",
|
|
"title": "Refresh",
|
|
"icon": {
|
|
"dark": "resources/icons/dark/refresh.svg",
|
|
"light": "resources/icons/light/refresh.svg"
|
|
}
|
|
}
|
|
]
|
|
},
|
|
"scripts": {
|
|
"vscode:prepublish": "tsc -p ./",
|
|
"compile": "tsc -watch -p ./"
|
|
},
|
|
"devDependencies": {
|
|
"typescript": "^2.1.4",
|
|
"@types/node": "*"
|
|
},
|
|
"dependencies": {
|
|
"@octokit/rest": "^15.2.6",
|
|
"dugite": "^1.28.0",
|
|
"git-credential-node": "^1.1.0",
|
|
"lodash": "4.17.5",
|
|
"tmp": "^0.0.31"
|
|
}
|
|
}
|