| { | |
| "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" | |
| } | |
| } |