mirror of
https://github.com/kristoferssolo/solorice.git
synced 2025-10-21 20:10:34 +00:00
126 lines
3.0 KiB
JSON
126 lines
3.0 KiB
JSON
{
|
|
"name": "heroku-command",
|
|
"displayName": "heroku-cli",
|
|
"description": "Run heroku from vscode commandline for nodejs projects.",
|
|
"icon": "images/herokuIcon.svg",
|
|
"version": "0.0.8",
|
|
"publisher": "pkosta2005",
|
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
"bugs": {
|
|
"url": "https://github.com/prashantkoshta/heroku-command-vscode/issues",
|
|
"email": "pkosta2005@outlook.com"
|
|
},
|
|
"homepage": "https://github.com/prashantkoshta/heroku-command-vscode/blob/master/README.md",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/prashantkoshta/heroku-command-vscode.git"
|
|
},
|
|
"categories": [
|
|
"Languages",
|
|
"Other"
|
|
],
|
|
"engines": {
|
|
"vscode": "^1.5.0"
|
|
},
|
|
"activationEvents": [
|
|
"onCommand:hext.herokuConfigSet",
|
|
"onCommand:hext.herokuCheckDyno",
|
|
"onCommand:hext.herokuUpdatePlugin",
|
|
"onCommand:hext.herokuRemovePlugin",
|
|
"onCommand:hext.herokuGetPlugins",
|
|
"onCommand:hext.herokuRenameApp",
|
|
"onCommand:hext.herokuGetAPiTooken",
|
|
"onCommand:hext.herokuLogin",
|
|
"onCommand:hext.herokuCreate",
|
|
"onCommand:hext.herokuPush",
|
|
"onCommand:hext.herokuScale",
|
|
"onCommand:hext.herokuOpen",
|
|
"onCommand:hext.herokuLogs",
|
|
"onCommand:hext.herokuLocal",
|
|
"onCommand:hext.herokuConfig"
|
|
],
|
|
"main": "./out/src/herokuextension",
|
|
"contributes": {
|
|
"commands": [
|
|
{
|
|
"command": "hext.herokuConfigSet",
|
|
"title": "heroku config:set"
|
|
},
|
|
{
|
|
"command": "hext.herokuCheckDyno",
|
|
"title": "heroku ps"
|
|
},
|
|
{
|
|
"command": "hext.herokuUpdatePlugin",
|
|
"title": "heroku update"
|
|
},
|
|
{
|
|
"command": "hext.herokuRemovePlugin",
|
|
"title": "heroku plugins:uninstall"
|
|
},
|
|
{
|
|
"command": "hext.herokuGetPlugins",
|
|
"title": "heroku plugins"
|
|
},
|
|
{
|
|
"command": "hext.herokuRenameApp",
|
|
"title": "heroku apps:rename"
|
|
},
|
|
{
|
|
"command": "hext.herokuGetAPiTooken",
|
|
"title": "heroku auth:token"
|
|
},
|
|
{
|
|
"command": "hext.herokuLogin",
|
|
"title": "heroku login"
|
|
},
|
|
{
|
|
"command": "hext.herokuCreate",
|
|
"title": "heroku create"
|
|
},
|
|
{
|
|
"command": "hext.herokuPush",
|
|
"title": "git push heroku master"
|
|
},
|
|
{
|
|
"command": "hext.herokuScale",
|
|
"title": "heroku ps:scale web=1"
|
|
},
|
|
{
|
|
"command": "hext.herokuOpen",
|
|
"title": "heroku open"
|
|
},
|
|
{
|
|
"command": "hext.herokuLogs",
|
|
"title": "heroku logs --tail"
|
|
},
|
|
{
|
|
"command": "hext.herokuLocal",
|
|
"title": "heroku local web"
|
|
},
|
|
{
|
|
"command": "hext.herokuConfig",
|
|
"title": "heroku config"
|
|
}
|
|
]
|
|
},
|
|
"scripts": {
|
|
"vscode:prepublish": "tsc -p ./",
|
|
"compile": "tsc -watch -p ./",
|
|
"postinstall": "node ./node_modules/vscode/bin/install"
|
|
},
|
|
"devDependencies": {
|
|
"typescript": "^2.0.3",
|
|
"vscode": "^1.0.0",
|
|
"mocha": "^2.3.3",
|
|
"@types/node": "^6.0.40",
|
|
"@types/mocha": "^2.2.32"
|
|
},
|
|
"__metadata": {
|
|
"id": "a6f80e2a-841e-4418-9c69-06bb26c09b25",
|
|
"publisherId": "e4ce0985-618a-4535-88ba-90e564a60c68",
|
|
"publisherDisplayName": "prashant",
|
|
"isPreReleaseVersion": false,
|
|
"installedTimestamp": 1641229811044
|
|
}
|
|
} |