-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
83 lines (83 loc) · 2.39 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
{
"name": "sqltools-driver-redshift",
"displayName": "Redshift Driver (Dedicated ver)",
"description": "Redshift Driver for VSCode SQLTools extension",
"version": "0.0.4",
"engines": {
"vscode": "^1.42.0",
"node": ">=12.4.0"
},
"publisher": "kj",
"license": "MIT",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/kj-9/sqltools-redshift-driver"
},
"bugs": {
"url": "https://github.com/kj-9/sqltools-redshift-driver/issues"
},
"keywords": [
"sqltools-driver",
"redshift",
"aws redshift"
],
"categories": [
"Programming Languages",
"Snippets",
"Formatters",
"Other"
],
"extensionDependencies": [
"mtxr.sqltools"
],
"activationEvents": [
"*",
"onLanguage:sql",
"onCommand:sqltools.*"
],
"main": "./out/extension.js",
"icon": "icons/icon.png",
"scripts": {
"build": "concurrently \"npm:build:*\"",
"build:extension": "webpack --env entry='extension' --mode production",
"build:plugin": "webpack --env entry='ls/plugin' --mode production",
"clean": "rimraf -rf out *.vsix",
"lint-fmt": "eslint --cache --fix src/ test/ && prettier --check --write src/ test/",
"run-test": "node ./out/test/runTest.js",
"tsc-compile": "tsc -p ./",
"tsc-watch": "tsc -watch -p ./",
"test": "yarn run tsc-compile && yarn run run-test",
"package": "yarn run clean && yarn run build && vsce package --yarn --allow-star-activation",
"publish": "vsce publish --yarn --allow-star-activation"
},
"dependencies": {
"@sqltools/base-driver": "latest",
"@sqltools/types": "latest",
"lodash": "^4.17.21",
"pg": "^8.8.0",
"uuid": "^9.0.0"
},
"devDependencies": {
"@types/mocha": "^10.0.0",
"@types/node": "^18.8.3",
"@types/pg": "^8.6.5",
"@types/vscode": "^1.42.0",
"@typescript-eslint/eslint-plugin": "^5.39.0",
"@typescript-eslint/parser": "^5.39.0",
"@vscode/test-electron": "^2.1.5",
"concurrently": "^7.4.0",
"eslint": "^8.25.0",
"eslint-config-prettier": "^8.5.0",
"mocha": "^10.0.0",
"mocha-junit-reporter": "^2.1.0",
"mocha-multi": "^1.1.6",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"ts-loader": "^9.4.1",
"typescript": "^4.8.4",
"vsce": "^2.11.0",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0"
}
}