vscode/extensions/github/package.json

50 lines
1,020 B
JSON
Raw Normal View History

2020-05-18 12:13:08 +00:00
{
"name": "github",
"displayName": "%displayName%",
"description": "%description%",
"publisher": "vscode",
"version": "0.0.1",
"engines": {
"vscode": "^1.41.0"
},
"enableProposedApi": true,
"categories": [
"Other"
],
"activationEvents": [
"*"
],
2020-05-18 12:37:53 +00:00
"extensionDependencies": [
"vscode.git"
],
2020-05-18 12:13:08 +00:00
"main": "./out/extension.js",
2020-05-18 12:59:22 +00:00
"contributes": {
"commands": [
{
"command": "github.publish",
"title": "Publish to GitHub"
}
]
},
"viewsWelcome": [
{
"view": "scm",
"contents": "%welcome.publishFolder%",
"when": "config.git.enabled && git.state == initialized && workbenchState == folder"
}
],
2020-05-18 12:13:08 +00:00
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "gulp compile-extension:github",
"watch": "gulp watch-extension:github"
},
"dependencies": {
2020-05-18 12:37:53 +00:00
"@octokit/rest": "^17.9.1",
"tunnel": "^0.0.6",
2020-05-18 12:13:08 +00:00
"vscode-nls": "^4.1.2"
},
"devDependencies": {
"@types/node": "^10.12.21"
}
}