3 Star 2 Fork 2

Gitee 极速下载 / MySQL-for-VS-Code

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
此仓库是为了提升国内下载速度的镜像仓库,每日同步一次。 原始仓库: https://github.com/formulahendry/vscode-mysql
克隆/下载
package.json 5.56 KB
一键复制 编辑 原始数据 按行查看 历史
formulahendry 提交于 2023-10-17 17:43 . 0.5.0
{
"name": "vscode-mysql",
"displayName": "MySQL",
"description": "MySQL management tool",
"version": "0.5.0",
"publisher": "formulahendry",
"icon": "logo.png",
"engines": {
"vscode": "^1.83.0"
},
"categories": [
"Programming Languages",
"Azure"
],
"keywords": [
"SQL",
"MySQL",
"Database",
"DB",
"RDBMS"
],
"bugs": {
"url": "https://github.com/formulahendry/vscode-mysql/issues",
"email": "formulahendry@gmail.com"
},
"homepage": "https://github.com/formulahendry/vscode-mysql/blob/master/README.md",
"repository": {
"type": "git",
"url": "https://github.com/formulahendry/vscode-mysql.git"
},
"activationEvents": [
"onView:mysql",
"onCommand:mysql.addConnection",
"onCommand:mysql.runQuery"
],
"main": "./out/extension",
"contributes": {
"views": {
"explorer": [
{
"id": "mysql",
"name": "MySQL"
}
]
},
"commands": [
{
"command": "mysql.refresh",
"title": "Refresh",
"category": "MySQL"
},
{
"command": "mysql.addConnection",
"title": "Add Connection",
"icon": {
"light": "resources/light/add.svg",
"dark": "resources/dark/add.svg"
},
"category": "MySQL"
},
{
"command": "mysql.deleteConnection",
"title": "Delete Connection",
"category": "MySQL"
},
{
"command": "mysql.runQuery",
"title": "Run MySQL Query",
"category": "MySQL"
},
{
"command": "mysql.newQuery",
"title": "New Query",
"category": "MySQL"
},
{
"command": "mysql.selectTop1000",
"title": "Select Top 1000",
"category": "MySQL"
}
],
"keybindings": [
{
"command": "mysql.runQuery",
"key": "ctrl+alt+e",
"when": "editorLangId == sql"
}
],
"menus": {
"editor/context": [
{
"command": "mysql.runQuery",
"when": "editorLangId == sql",
"group": "navigation"
}
],
"view/title": [
{
"command": "mysql.addConnection",
"when": "view == mysql",
"group": "navigation@1"
}
],
"view/item/context": [
{
"command": "mysql.newQuery",
"when": "view == mysql && viewItem == connection",
"group": "mysql@1"
},
{
"command": "mysql.refresh",
"when": "view == mysql && viewItem == connection",
"group": "mysql@1"
},
{
"command": "mysql.deleteConnection",
"when": "view == mysql && viewItem == connection",
"group": "mysql@2"
},
{
"command": "mysql.newQuery",
"when": "view == mysql && viewItem == database",
"group": "mysql@0"
},
{
"command": "mysql.refresh",
"when": "view == mysql && viewItem == database",
"group": "mysql@1"
},
{
"command": "mysql.selectTop1000",
"when": "view == mysql && viewItem == table",
"group": "mysql@0"
},
{
"command": "mysql.refresh",
"when": "view == mysql && viewItem == table",
"group": "mysql@1"
}
]
},
"configuration": {
"type": "object",
"title": "MySQL",
"properties": {
"vscode-mysql.enableTelemetry": {
"type": "boolean",
"default": true,
"description": "Whether to enable anonymous usage collection."
},
"vscode-mysql.maxTableCount": {
"type": "integer",
"default": 500,
"description": "The maximum table count shown in the tree view"
},
"vscode-mysql.enableDelimiterOperator": {
"type": "boolean",
"default": true,
"description": "Enable support for DELIMITER operator."
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"tslint": "tslint -t verbose src/**/*.ts"
},
"devDependencies": {
"@types/mocha": "^2.2.42",
"@types/node": "^7.10.14",
"@types/vscode": "^1.57.0",
"tslint": "^5.8.0",
"typescript": "^3.9.10"
},
"dependencies": {
"applicationinsights": "^1.0.0",
"asciitable": "0.0.7",
"mysql": "^2.15.0",
"uuid": "^3.1.0"
}
}
1
https://gitee.com/mirrors/MySQL-for-VS-Code.git
git@gitee.com:mirrors/MySQL-for-VS-Code.git
mirrors
MySQL-for-VS-Code
MySQL-for-VS-Code
master

搜索帮助