-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
140 lines (140 loc) · 3.93 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
{
"name": "oledb-runner",
"displayName": "OLEDB-Runner",
"description": "This extension is used to execute OLEDB queries to CSV files.",
"author": {
"name": "Israel Ojeda Ropero",
"email": "[email protected]"
},
"publisher": "Herocraft321",
"version": "1.1.0",
"engines": {
"vscode": "^1.86.0"
},
"icon": "icon.png",
"categories": [
"Testing"
],
"repository": {
"type": "git",
"url": "https://github.com/Herocraft321/oledb-runner.git"
},
"activationEvents": [],
"main": "./src/extension",
"contributes": {
"commands": [
{
"command": "oledb-runner.configPath",
"title": "Configure Path - OLEDB"
},
{
"command": "oledb-runner.setPath",
"title": "Configure Path IU - OLEDB"
},
{
"command": "oledb-runner.execute",
"title": "Execute - OLEDB"
},
{
"command": "oledb-runner.configProvider",
"title": "Configure Provider - OLEDB"
},
{
"command": "oledb-runner.configDelimiter",
"title": "Configure Delimiter - OLEDB"
}
],
"viewsContainers": {
"activitybar": [
{
"id": "oledb-runner",
"title": "OLEDB Runner",
"icon": "./resources/icon.svg"
}
],
"panel": [
{
"id": "oledb-runner",
"title": "OLEDB Runner",
"icon": "./resources/icon.svg"
}
]
},
"views": {
"oledb-runner": [
{
"id": "configuration",
"name": "configuration"
}
]
},
"viewsWelcome": [
{
"view": "configuration",
"contents": "Save the directory where OLEDB will be used.\n[Select folder](command:oledb-runner.setPath?[true])"
},
{
"view": "configuration",
"contents": "path"
}
],
"configuration": [
{
"title": "OLEDB-Runner",
"properties": {
"OLEDB-Runner.Engine": {
"type": "string",
"default": "x86",
"enum": ["x86", "x64"],
"description": "Describes the type of OLEDB system engine"
},
"OLEDB-Runner.Default-Delimiter":{
"type": "string",
"default": ",",
"description": "Determines the default delimiter for CSV files"
},
"OLEDB-Runner.Default-Provider":{
"type": "string",
"default": "Microsoft.ACE.OLEDB.12.0",
"description": "Determine the default OLEDB provider"
},
"OLEDB-Runner.Table-CSS":{
"type": "string",
"default": "<style>body {text-align: center;}table {margin: 2% auto;}table,th,td {border-collapse: collapse;padding: 10px;}</style>",
"description": "Determines the style that will be used when displaying the table."
},
"OLEDB-Runner.Consulting-IMG":{
"type": "string",
"default": "https://media.giphy.com/media/JIX9t2j0ZTN9S/giphy.gif",
"description": "Set image or gif to wait for the query to be performed"
},
"OLEDB-Runner.Error-IMG":{
"type": "string",
"default": "https://i.kym-cdn.com/photos/images/newsfeed/001/384/531/8ed.jpg",
"description": "Set image or gif on error"
}
}
}
]
},
"scripts": {
"compile-tests": "tsc -p . --outDir out",
"watch-tests": "tsc -p . -w --outDir out",
"pretest": "npm run compile && npm run lint",
"lint": "eslint src --ext ts"
},
"devDependencies": {
"@types/vscode": "^1.86.0",
"@types/mocha": "^10.0.6",
"@types/node": "18.x",
"@typescript-eslint/eslint-plugin": "^6.19.1",
"@typescript-eslint/parser": "^6.19.1",
"eslint": "^8.56.0",
"typescript": "^5.3.3",
"ts-loader": "^9.5.1",
"webpack": "^5.90.0",
"webpack-cli": "^5.1.4",
"@vscode/test-cli": "^0.0.4",
"@vscode/test-electron": "^2.3.9"
}
}