generated from mtxr/vsc-sqltools-driver-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
107 lines (107 loc) · 2.87 KB
/
package.json
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
98
99
100
101
102
103
104
105
106
107
{
"name": "sqltools-singlestore-driver",
"displayName": "SQLTools SingleStoreDB Driver",
"description": "SQLTools Driver for SingleStoreDB",
"version": "0.0.1",
"engines": {
"vscode": "^1.42.0"
},
"publisher": "singlestore",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/singlestore-labs/sqltools-singlestore-driver"
},
"bugs": "https://github.com/singlestore-labs/sqltools-singlestore-driver/issues",
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"test": "jest"
},
"keywords": [
"sqltools-driver",
"vs-code",
"singlestore",
"singlestoredb",
"memsql",
"sql"
],
"homepage": "https://github.com/singlestore-labs/sqltools-singlestore-driver#readme",
"categories": [
"Programming Languages",
"Snippets",
"Formatters",
"Other"
],
"extensionDependencies": [
"mtxr.sqltools"
],
"activationEvents": [
"*",
"onLanguage:sql",
"onCommand:sqltools.*"
],
"contributes": {
"commands": [
{
"title": "Show Function",
"command": "sqltools.singleStoreShowFunction",
"category": "SQLTools Connection",
"icon": {
"light": "icons/show-light.svg",
"dark": "icons/show-dark.svg"
}
},
{
"title": "Show Procedure",
"command": "sqltools.singleStoreShowProcedure",
"category": "SQLTools Connection",
"icon": {
"light": "icons/show-light.svg",
"dark": "icons/show-dark.svg"
}
}
],
"menus": {
"view/item/context": [
{
"command": "sqltools.singleStoreShowFunction",
"when": "view == sqltoolsViewConnectionExplorer && viewItem =~ /^connection\\.(function)$/",
"group": "inline@0"
},
{
"command": "sqltools.singleStoreShowFunction",
"when": "view == sqltoolsViewConnectionExplorer && viewItem =~ /^connection\\.(function)$/",
"group": "navigation@0"
},
{
"command": "sqltools.singleStoreShowProcedure",
"when": "view == sqltoolsViewConnectionExplorer && viewItem =~ /^connection\\.(procedure)$/",
"group": "inline@0"
},
{
"command": "sqltools.singleStoreShowProcedure",
"when": "view == sqltoolsViewConnectionExplorer && viewItem =~ /^connection\\.(procedure)$/",
"group": "navigation@0"
}
]
}
},
"main": "./out/extension.js",
"dependencies": {
"@sqltools/base-driver": "^0.1.11",
"@sqltools/types": "^0.1.7",
"lodash": "^4.17.21",
"mysql": "^2.18.1",
"uuid": "^9.0.0"
},
"devDependencies": {
"@types/jest": "^29.4.0",
"@types/node": "^18.4.0",
"@types/vscode": "^1.75.1",
"jest": "^29.4.3",
"ts-jest": "^29.0.5",
"typescript": "^4.9.5"
}
}