File size: 2,970 Bytes
1da8860 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 | {
"name": "2d71a7e3",
"displayName": "VS Code Extension: SQL Query Builder and Database Schema Navigator",
"description": "A VS Code extension for backend developers and data engineers that provides a visual SQL query builder panel, live database schema browser for PostgreSQL, MySQL, and SQLite, query history with execution time tracking, and one-click result export to CSV or JSON. Features syntax-aware query completion, automatic query formatting, and a parameterized query template library for common database patterns.",
"version": "1.0.0",
"engines": {
"vscode": "^1.74.0"
},
"categories": [
"Other"
],
"publisher": "digitalforge",
"activationEvents": [
"onStartupFinished"
],
"main": "./out/extension",
"contributes": {
"commands": [
{
"command": "2d71a7e3.activate",
"title": "VS Code Extension: SQL Query Builder and Database Schema Navigator: Activate"
},
{
"command": "2d71a7e3.settings",
"title": "VS Code Extension: SQL Query Builder and Database Schema Navigator: Open Settings"
},
{
"command": "2d71a7e3.run",
"title": "VS Code Extension: SQL Query Builder and Database Schema Navigator: Run"
}
],
"configuration": {
"title": "VS Code Extension: SQL Query Builder and Database Schema Navigator",
"properties": {
"2d71a7e3.enabled": {
"type": "boolean",
"default": true,
"description": "Enable/disable VS Code Extension: SQL Query Builder and Database Schema Navigator"
},
"2d71a7e3.autoRun": {
"type": "boolean",
"default": false,
"description": "Automatically run on file open"
},
"2d71a7e3.logLevel": {
"type": "string",
"enum": [
"error",
"warn",
"info",
"debug"
],
"default": "info",
"description": "Log verbosity level"
}
}
},
"keybindings": [
{
"command": "2d71a7e3.activate",
"key": "ctrl+shift+alt+a",
"mac": "cmd+shift+alt+a",
"when": "editorTextFocus"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile",
"lint": "eslint src --ext ts"
},
"devDependencies": {
"@types/vscode": "^1.74.0",
"@types/node": "^18.x",
"typescript": "^5.0.0"
},
"keywords": [
"devops_infra",
"productivity",
"automation"
],
"license": "MIT",
"icon": "icon.png",
"galleryBanner": {
"color": "#1e1e2e",
"theme": "dark"
},
"repository": {
"type": "git",
"url": "https://github.com/digitalforge/2d71a7e3"
},
"bugs": {
"url": "https://github.com/digitalforge/2d71a7e3/issues"
}
} |