-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
156 lines (156 loc) · 6.05 KB
/
Copy pathpackage.json
File metadata and controls
156 lines (156 loc) · 6.05 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
143
144
145
146
147
148
149
150
151
152
153
154
155
156
{
"name": "sql-data-inspector-mssql",
"displayName": "SQL Data Inspector (MSSQL)",
"description": "This extension makes it easy to inspect data with just a few clicks.",
"version": "1.0.0",
"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.105.0"
},
"extensionDependencies": [
"ms-mssql.mssql"
],
"categories": [
"Other"
],
"activationEvents": [],
"main": "./dist/extension.js",
"contributes": {
"menus": {
"view/item/context": [
{
"command": "sql-data-inspector-mssql.inspect-data",
"group": "2_SQLDataInspector@1",
"when": "view == objectExplorer && viewItem =~ /\\btype=Database\\b/"
},
{
"command": "sql-data-inspector-mssql.inspect-data",
"group": "2_SQLDataInspector@1",
"when": "view == objectExplorer && viewItem =~ /\\btype=Server\\b/ && !(viewItem =~ /\\bsubType=(Database|DockerContainerDatabase)\\b/)"
}
],
"editor/context": [
{
"command": "sql-data-inspector-mssql.inspect-data-editor",
"group": "data",
"when": "editorLangId == sql"
}
]
},
"commands": [
{
"command": "sql-data-inspector-mssql.inspect-data",
"title": "Inspect Data"
},
{
"command": "sql-data-inspector-mssql.inspect-data-editor",
"title": "Inspect Selected 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.tracing.sqlCommands": {
"type": "boolean",
"default": false,
"markdownDescription": "Trace SQL commands and their complete results in the **SQL Data Inspector** output channel. Disable this setting if query text or returned data must not be written to the output log."
},
"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 ./",
"watch": "npm run copy-web && vite build --watch --mode development",
"debug:build": "npm run copy-web && vite build --mode development",
"debug": "npm run copy-web && vite build --watch --mode development",
"package": "vite build --mode production",
"pretest": "npm run compile",
"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.3.0",
"handlebars": "^4.7.8",
"vscode-nls": "^5.2.0"
},
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"@types/jasmine": "^6.0.0",
"@types/node": "^24",
"@types/vscode": "^1.105.0",
"@vscode/test-electron": "^2.5.2",
"@vscode/vsce": "^3.9.2",
"ansi-regex": "6.0.1",
"jasmine": "^6.3.0",
"markdown-it": "^14.1.0",
"mkdirp": "^3.0.1",
"ncp": "^2.0.0",
"rimraf": "^6.0.0",
"typescript": "^7.0.2",
"vite": "^8.1.5"
}
}