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.
91 lines
2.4 KiB
91 lines
2.4 KiB
{
|
|
"name": "frog",
|
|
"displayName": "frog",
|
|
"description": "The Oracle SQL workbench for VSCode",
|
|
"version": "0.0.12",
|
|
"publisher": "todie",
|
|
"engines": {
|
|
"vscode": "^1.17.0"
|
|
},
|
|
"categories": [
|
|
"Other"
|
|
],
|
|
"activationEvents": [
|
|
"onCommand:frog.executeSnippet",
|
|
"onLanguage:plsql",
|
|
"onView:connections"
|
|
],
|
|
"main": "./out/extension",
|
|
"contributes": {
|
|
"commands": [
|
|
{
|
|
"command": "frog.executeSnippet",
|
|
"title": "Execute SQL Snippet"
|
|
},
|
|
{
|
|
"command": "frog.compileFile",
|
|
"title": "Compiles the current file"
|
|
},
|
|
{
|
|
"command": "frog.selectConnection",
|
|
"title": "Selects the connection to use"
|
|
},
|
|
{
|
|
"command": "frog.setRowLimit",
|
|
"title": "Sets the row limit"
|
|
}
|
|
],
|
|
"keybindings": [
|
|
{
|
|
"command": "frog.executeSnippet",
|
|
"key": "ctrl+enter",
|
|
"mac": "ctrl+enter"
|
|
},
|
|
{
|
|
"command": "frog.compileFile",
|
|
"key": "ctrl+alt+c",
|
|
"mac": "ctrl+alt+c"
|
|
}
|
|
|
|
],
|
|
"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": "./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"
|
|
}
|
|
} |