-
-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
173 lines (173 loc) · 4.03 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
168
169
170
171
172
173
{
"name": "devdb",
"version": "1.14.24",
"publisher": "damms005",
"engines": {
"vscode": "^1.83.0"
},
"license": "SEE LICENSE IN LICENSE.txt",
"displayName": "DevDb",
"description": "A zero-config VS Code extension that auto-loads your database and displays the data right inside VS Code",
"categories": [
"Programming Languages",
"Other"
],
"keywords": [
"devdb",
"database",
"mysql",
"mariadb",
"sqlite",
"postgresql",
"postgres",
"sql",
"database",
"database management",
"database management system",
"database manager",
"database manager",
"database manager"
],
"galleryBanner": {
"color": "#f9fafb",
"theme": "light"
},
"preview": false,
"main": "./out/extension.js",
"homepage": "https://github.com/damms005/devdb-vscode/blob/main/README.md",
"bugs": {
"url": "https://github.com/damms005/devdb-vscode/discussions",
"email": "damms005@gmail.com"
},
"repository": {
"type": "git",
"url": "https://github.com/damms005/devdb-vscode.git"
},
"icon": "resources/devdb-128x128.png",
"activationEvents": [
"workspaceContains:**/.devdbrc"
],
"contributes": {
"commands": [
{
"command": "devdb.context-menu.open-table-at-cursor",
"title": "Open table at cursor in DevDb"
}
],
"viewsContainers": {
"panel": [
{
"id": "devdb-container",
"title": "DevDb",
"icon": "resources/devdb.png"
}
]
},
"views": {
"devdb-container": [
{
"type": "webview",
"id": "devdb",
"name": "DevDb"
}
]
},
"keybindings": [
{
"command": "devdb.focus",
"key": "CTRL+K CTRL+D",
"mac": "CMD+K CMD+D"
}
],
"menus": {
"editor/context": [
{
"command": "devdb.context-menu.open-table-at-cursor",
"when": "editorTextFocus"
}
]
},
"configuration": {
"title": "DevDb",
"properties": {
"Devdb.colorTheme": {
"title": "Color Theme",
"type": "string",
"default": "light",
"description": "The color theme for the webview",
"enum": [
"light",
"dark"
]
},
"Devdb.dontShowNewVersionMessage": {
"type": "boolean",
"default": false,
"markdownDescription": "If set to `true`, the new version message won't be shown anymore."
},
"Devdb.showDebugInfo": {
"type": "boolean",
"default": false,
"description": "Show debugging information in the console."
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"hot-reload": "chokidar './package.json' './src/**/*.ts' -c \"clear && echo 'Compiling extension code\\n' && npm run compile \"",
"pretest": "npm run compile && npm run lint",
"lint": "eslint src --ext ts",
"test": "node ./out/test/runTest.js",
"mocha": "./node_modules/.bin/mocha --bail --require ts-node/register",
"test-services": "./node_modules/.bin/mocha --bail --require ts-node/register ./src/test/suite/**/*.test.ts",
"publish": "./publish.sh"
},
"devDependencies": {
"@testcontainers/mssqlserver": "^10.9.0",
"@testcontainers/mysql": "^10.6.0",
"@testcontainers/postgresql": "^10.6.0",
"@types/mocha": "^10.0.2",
"@types/node": "^18.18.5",
"@types/pluralize": "^0.0.33",
"@types/vscode": "^1.83.0",
"@typescript-eslint/eslint-plugin": "^6.7.3",
"@typescript-eslint/parser": "^6.7.3",
"@vscode/test-electron": "^2.3.4",
"chokidar-cli": "^3.0.0",
"eslint": "^8.50.0",
"glob": "^10.3.3",
"mocha": "^10.2.0",
"prettier": "^3.0.3",
"prettier-plugin-tailwindcss": "^0.5.6",
"testcontainers": "^10.6.0",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"dependencies": {
"case": "^1.6.3",
"cosmiconfig": "^8.3.6",
"csv-parse": "^5.5.3",
"dotenv": "^16.3.1",
"mysql2": "^3.9.7",
"pg": "^8.11.3",
"pg-hstore": "^2.3.4",
"pluralize": "^8.0.0",
"sequelize": "^6.33.0",
"sql-formatter": "^13.1.0",
"sqlite3": "^5.1.7",
"tedious": "^18.2.0",
"yaml": "^2.3.3"
},
"prettier": {
"plugins": [
"prettier-plugin-tailwindcss"
],
"useTabs": true,
"semi": false,
"printWidth": 165,
"singleQuote": true,
"arrowParens": "avoid"
}
}