-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·124 lines (124 loc) · 2.36 KB
/
Copy pathpackage.json
File metadata and controls
executable file
·124 lines (124 loc) · 2.36 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
{
"name": "sql-api",
"displayName": "SQL API",
"description": "Explore database via SQL API",
"version": "0.0.1",
"publisher": "local",
"engines": {
"vscode": "^1.70.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onView:sqlApiExplorer"
],
"main": "./out/extension.js",
"contributes": {
"viewsContainers": {
"activitybar": [
{
"id": "sql-explorer-container",
"title": "API DB",
"icon": "$(database)"
}
]
},
"views": {
"sql-explorer-container": [
{
"id": "sqlApiExplorer",
"name": "API DB"
}
]
},
"commands": [
{
"command": "sqlApiExplorer.refresh",
"title": "Refresh",
"icon": "$(refresh)"
},
{
"command": "sqlApiExplorer.addHost",
"title": "Add Host",
"icon": "$(add)"
},
{
"command": "sqlApiExplorer.removeHost",
"title": "Remove Host",
"icon": "$(trash)"
},
{
"command": "sqlApiExplorer.openQuery",
"title": "Run SQL Query",
"icon": "$(terminal)"
},
{
"command": "sqlApiExplorer.showData",
"title": "Show Data",
"icon": "$(table)"
},
{
"command": "sqlApiExplorer.showTableInfo",
"title": "Show Table Info",
"icon": "$(info)"
},
{
"command": "sqlApiExplorer.editHost",
"title": "Edit Host",
"icon": "$(edit)"
}
],
"menus": {
"view/title": [
{
"command": "sqlApiExplorer.addHost",
"group": "navigation"
}
],
"view/item/context": [
{
"command": "sqlApiExplorer.showTableInfo",
"when": "viewItem == table",
"group": "inline"
},
{
"command": "sqlApiExplorer.showData",
"when": "viewItem == table",
"group": "inline"
},
{
"command": "sqlApiExplorer.editHost",
"when": "viewItem == host",
"group": "inline"
},
{
"command": "sqlApiExplorer.removeHost",
"when": "viewItem == host",
"group": "inline"
},
{
"command": "sqlApiExplorer.openQuery",
"when": "viewItem == host",
"group": "inline"
}
]
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./"
},
"devDependencies": {
"@types/node": "^16.x",
"@types/vscode": "^1.70.0",
"typescript": "^4.7.4"
},
"dependencies": {},
"__metadata": {
"installedTimestamp": 1773246065679,
"targetPlatform": "undefined",
"size": 169260
}
}