forked from jameswright1562/DbViewer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
142 lines (142 loc) · 4.24 KB
/
Copy pathpackage.json
File metadata and controls
142 lines (142 loc) · 4.24 KB
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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
{
"name": "sql-connection-workbench",
"displayName": "SQL Connection Workbench",
"description": "Professional SQL data exploration for VS Code with AWS Secrets Manager-backed passwords.",
"version": "0.3.0",
"publisher": "JamesWright",
"license": "MIT",
"engines": {
"vscode": "^1.96.0"
},
"icon": "media/package-icon.png",
"repository": {
"type": "git",
"url": "https://github.com/jameswright1562/sql-dbviewer-vscode-package"
},
"categories": [
"Other"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "sqlConnectionWorkbench.openWorkbench",
"title": "SQL Workbench: Open Workbench",
"icon": "$(browser)"
},
{
"command": "sqlConnectionWorkbench.addConnection",
"title": "SQL Workbench: Add Connection",
"icon": "$(add)"
},
{
"command": "sqlConnectionWorkbench.refreshConnections",
"title": "SQL Workbench: Refresh Explorer",
"icon": "$(refresh)"
},
{
"command": "sqlConnectionWorkbench.editConnection",
"title": "SQL Workbench: Edit Connection"
},
{
"command": "sqlConnectionWorkbench.removeConnection",
"title": "SQL Workbench: Remove Connection"
},
{
"command": "sqlConnectionWorkbench.selectSchemas",
"title": "SQL Workbench: Select Visible Schemas"
},
{
"command": "sqlConnectionWorkbench.previewTable",
"title": "SQL Workbench: Preview Table"
}
],
"viewsContainers": {
"activitybar": [
{
"id": "sqlConnectionWorkbench",
"title": "SQL Workbench",
"icon": "media/activity-icon.svg"
}
]
},
"views": {
"sqlConnectionWorkbench": [
{
"id": "sqlConnectionWorkbench.connectionsView",
"name": "Connections"
}
]
},
"menus": {
"view/title": [
{
"command": "sqlConnectionWorkbench.addConnection",
"when": "view == sqlConnectionWorkbench.connectionsView",
"group": "navigation@1"
},
{
"command": "sqlConnectionWorkbench.openWorkbench",
"when": "view == sqlConnectionWorkbench.connectionsView",
"group": "navigation@2"
},
{
"command": "sqlConnectionWorkbench.refreshConnections",
"when": "view == sqlConnectionWorkbench.connectionsView",
"group": "navigation@3"
}
],
"view/item/context": [
{
"command": "sqlConnectionWorkbench.openWorkbench",
"when": "view == sqlConnectionWorkbench.connectionsView && viewItem == connection",
"group": "inline@1"
},
{
"command": "sqlConnectionWorkbench.editConnection",
"when": "view == sqlConnectionWorkbench.connectionsView && viewItem == connection",
"group": "navigation@1"
},
{
"command": "sqlConnectionWorkbench.selectSchemas",
"when": "view == sqlConnectionWorkbench.connectionsView && viewItem == connection",
"group": "navigation@2"
},
{
"command": "sqlConnectionWorkbench.removeConnection",
"when": "view == sqlConnectionWorkbench.connectionsView && viewItem == connection",
"group": "navigation@3"
},
{
"command": "sqlConnectionWorkbench.previewTable",
"when": "view == sqlConnectionWorkbench.connectionsView && viewItem == table",
"group": "inline@1"
}
]
}
},
"scripts": {
"build": "tsc -p ./",
"watch": "tsc -watch -p ./",
"lint": "tsc --noEmit -p ./",
"test": "npm run build && node --test out/test/**/*.test.js",
"vscode:prepublish": "npm run build",
"package:extension": "npx @vscode/vsce package",
"publish:extension": "npx @vscode/vsce publish"
},
"dependencies": {
"@aws-sdk/client-secrets-manager": "latest",
"@aws-sdk/credential-providers": "latest",
"@types/mssql": "^9.1.9",
"mssql": "latest",
"mysql2": "latest",
"pg": "latest"
},
"devDependencies": {
"@vscode/vsce": "latest",
"@types/node": "latest",
"@types/pg": "latest",
"@types/vscode": "^1.96.0",
"typescript": "latest"
}
}