-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
167 lines (167 loc) · 6.21 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
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
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
{
"name": "sql-data-inspector",
"displayName": "SQL Data Inspector",
"description": "This extension makes it easy to inspect data with just a few clicks.",
"version": "0.8.1",
"publisher": "ernstc",
"license": "MIT",
"icon": "images/icon.png",
"repository": {
"type": "git",
"url": "https://github.com/ernstc/SqlDataInspector.git"
},
"bugs": {
"url": "https://github.com/ernstc/SqlDataInspector/issues"
},
"engines": {
"vscode": "^1.79.1",
"azdata": "*"
},
"categories": [
"Other"
],
"activationEvents": [],
"main": "./dist/extension.js",
"contributes": {
"menus": {
"objectExplorer/item/context": [
{
"command": "sql-data-inspector.inspect-data",
"when": "connectionProvider == MSSQL && nodeType && nodeType == Database",
"group": "data"
},
{
"command": "sql-data-inspector.inspect-data",
"when": "connectionProvider == MSSQL && nodeType && nodeType == Server",
"group": "data"
},
{
"command": "sql-data-inspector.inspect-data",
"when": "connectionProvider == MySQL && nodeType && nodeType == Database",
"group": "data"
},
{
"command": "sql-data-inspector.inspect-data",
"when": "connectionProvider == PGSQL && nodeType && nodeType == Database",
"group": "data"
}
],
"editor/context": [
{
"command": "sql-data-inspector.inspect-data-editor",
"group": "data",
"when": "true"
}
]
},
"commands": [
{
"command": "sql-data-inspector.inspect-data",
"title": "Inspect data"
},
{
"command": "sql-data-inspector.inspect-data-editor",
"title": "Inspect data"
}
],
"configuration": {
"type": "object",
"title": "SQL Data Inspector",
"properties": {
"sqlDataInspector.columns.orderAlphabetically": {
"type": "boolean",
"default": false,
"markdownDescription": "Order columns alphabetically in the columns and the data inspector views."
},
"sqlDataInspector.columns.showPrimaryKeyFirst": {
"type": "boolean",
"default": false,
"markdownDescription": "Shows primary key columns first in the columns and the data inspector views."
},
"sqlDataInspector.liveMonitoringRefreshInterval": {
"type": "string",
"default": "30",
"markdownDescription": "The refresh interval in seconds for the live monitoring view. The default is 30 seconds.",
"enum": [
"5",
"10",
"30",
"60",
"300"
]
},
"sqlDataInspector.pageSize": {
"type": "string",
"default": "20",
"markdownDescription": "The number of rows to show in the data inspector view. The default is 20. The maximum is 100.",
"enum": [
"10",
"20",
"50",
"100"
]
},
"sqlDataInspector.showTables": {
"type": "boolean",
"default": true,
"markdownDescription": "Show tables in the objects list."
},
"sqlDataInspector.showViews": {
"type": "boolean",
"default": true,
"markdownDescription": "Show views in the objects list."
},
"sqlDataInspector.viewHorizontalSplit": {
"type": "integer",
"default": 40,
"minimum": 15,
"maximum": 85,
"markdownDescription": "Horizontal split percentage."
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run clean && npm run copy-web && npm run package",
"compile": "tsc -p ./",
"lint": "eslint src --ext ts",
"watch": "npm run copy-web && webpack --watch",
"debug": "npm run copy-web && tsc -watch -p ./",
"package": "webpack --mode production --devtool hidden-source-map",
"pretest": "npm run compile && npm run lint",
"test": "node ./dist/test/runTest.js",
"proposedapi": "node installTypings.js",
"copy-web": "mkdirp ./dist/web && ncp ./src/web ./dist/web",
"clean": "rimraf ./dist",
"pack": "vsce package"
},
"dependencies": {
"fs-extra": "^11.2.0",
"handlebars": "^4.7.8",
"vscode-nls": "^5.2.0"
},
"devDependencies": {
"@types/azdata": "^1.46.6",
"@types/fs-extra": "^11.0.4",
"@types/glob": "^8.1.0",
"@types/mocha": "^10.0.6",
"@types/node": "^20.12.3",
"@types/vscode": "^1.79.1",
"@typescript-eslint/eslint-plugin": "^7.5.0",
"@typescript-eslint/parser": "^7.5.0",
"@vscode/test-electron": "^2.3.9",
"@vscode/vsce": "^2.29.0",
"ansi-regex": "6.0.1",
"eslint": "^8.57.0",
"glob": "^8.1.0",
"markdown-it": "^14.1.0",
"mkdirp": "^3.0.1",
"mocha": "^10.4.0",
"ncp": "^2.0.0",
"rimraf": "^6.0.0",
"ts-loader": "^9.5.1",
"typescript": "^5.5.3",
"webpack": "^5.94.0",
"webpack-cli": "^5.1.4"
}
}