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

140 lines
4.0 KiB

7 years ago
{
"name": "frog",
7 years ago
"displayName": "Frog",
7 years ago
"description": "The Oracle SQL workbench for VSCode",
"version": "0.0.25",
7 years ago
"publisher": "tmuerell",
7 years ago
"engines": {
"vscode": "^1.17.0"
},
"categories": [
"Other"
],
"activationEvents": [
7 years ago
"onCommand:frog.executeSnippet",
7 years ago
"onLanguage:plsql",
"onView:connections"
],
7 years ago
"icon": "images/database.png",
7 years ago
"main": "./out/extension",
"contributes": {
"commands": [
{
7 years ago
"command": "frog.executeSnippet",
7 years ago
"title": "Frog: Execute SQL Snippet"
},
{
"command": "frog.compileFile",
7 years ago
"title": "Frog: Compiles the current file"
},
{
"command": "frog.commit",
"title": "Frog: Commits the current transaction",
"icon": {
"light": "images/commit.svg",
"dark": "images/commit_inverse.svg"
}
},
{
"command": "frog.rollback",
"title": "Frog: Rollbacks",
"icon": {
"light": "images/rollback.svg",
"dark": "images/rollback_inverse.svg"
}
},
{
"command": "frog.checkConnection",
"title": "Frog: Checks the connection"
},
{
"command": "frog.selectConnection",
7 years ago
"title": "Frog: Selects the connection to use"
},
{
"command": "frog.setRowLimit",
7 years ago
"title": "Frog: 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"
}
],
7 years ago
"views": {
"explorer": [
{
"id": "connections",
"name": "Connections"
}
7 years ago
]
7 years ago
},
"languages": [
{
"id": "frog-runner",
"aliases": [],
"extensions": [],
"mimetypes": [
"text/x-code-output",
"x-code-output"
]
}
],
"grammars": [
{
"language": "frog-runner",
"scopeName": "code.log",
7 years ago
"path": "./syntaxes/frog-runner.tmLanguage"
7 years ago
}
],
"menus": {
"editor/title": [
{
"command": "frog.commit",
"group": "navigation"
},
{
"command": "frog.rollback",
"group": "navigation"
}
]
},
"configuration": {
"type": "object",
"title": "Frog configuration",
"properties": {
"frog.javaHome": {
"type": "string",
7 years ago
"default": "",
"description": "Set the java home to use for the runner."
7 years ago
},
"frog.resultSetStyles": {
"type": "string",
"default": "",
"description": "Set additional CSS styles for the result set viewer (Example: 'td { color: red; }')"
}
}
}
7 years ago
},
"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",
7 years ago
"@types/mocha": "^2.2.42"
7 years ago
}
}