You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
frog/package.json

76 lines
1.9 KiB

{
"name": "frog",
"displayName": "frog",
"description": "The Oracle SQL workbench for VSCode",
"version": "0.0.6",
"publisher": "todie",
"engines": {
"vscode": "^1.17.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:extension.executeSnippet",
"onLanguage:plsql",
"onView:connections"
],
"main": "./out/extension",
"contributes": {
"commands": [
{
"command": "extension.executeSnippet",
"title": "Execute SQL Snippet"
},
{
"command": "selectConnection",
"title": "Selects the connection to use"
}
],
"keybindings": [{
"command": "extension.executeSnippet",
"key": "ctrl+enter",
"mac": "ctrl+enter",
"when": "editorHasSelection"
}],
"views": {
"explorer": [
{
"id": "connections",
"name": "Connections"
}
]
},
"languages": [
{
"id": "frog-runner",
"aliases": [],
"extensions": [],
"mimetypes": [
"text/x-code-output",
"x-code-output"
]
}
],
"grammars": [
{
"language": "frog-runner",
"scopeName": "code.log",
"path": "./src/syntaxes/frog-runner.tmLanguage"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "npm run compile && node ./node_modules/vscode/bin/test"
},
"devDependencies": {
"typescript": "^2.5.3",
"vscode": "^1.1.5",
"@types/node": "^7.0.43",
"@types/mocha": "^2.2.42"
}
}