forked from Snowflake-Labs/sqltools-snowflake-driver
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
64 lines (64 loc) · 1.61 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
{
"name": "snowflake-driver-for-sqltools",
"displayName": "Snowflake Driver for SQLTools",
"description": "SQLTools Snowflake driver",
"version": "0.5.0",
"engines": {
"vscode": "^1.42.0"
},
"publisher": "koszti",
"icon": "icons/snowflake-driver-for-sqltools.png",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/koszti/sqltools-snowflake-driver.git"
},
"bugs": {
"url": "https://github.com/koszti/sqltools-snowflake-driver/issues",
"email": "[email protected]"
},
"scripts": {
"clean": "rimraf -rf out *.vsix",
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"package": "vsce package --no-yarn --allow-star-activation -o .",
"publish:vsce": "vsce publish --no-yarn --allow-star-activation -p $VSCE_PAT -i",
"publish:ovsx": "ovsx publish -p $OVSX_PAT"
},
"keywords": [
"snowflake",
"sqltools-driver"
],
"categories": [
"Programming Languages",
"Snippets",
"Formatters",
"Other"
],
"extensionDependencies": [
"mtxr.sqltools"
],
"activationEvents": [
"*",
"onLanguage:sql",
"onCommand:sqltools.*"
],
"main": "./out/extension.js",
"dependencies": {
"@sqltools/base-driver": "latest",
"@sqltools/types": "latest",
"snowflake-promise": "^4.5.0",
"snowflake-sdk": "^1.6.0",
"uuid": "^7.0.2"
},
"devDependencies": {
"@babel/preset-env": "^7.5.5",
"@types/node": "^14.0.9",
"@types/vscode": "^1.42.0",
"ovsx": "^0.5.1",
"rimraf": "^3.0.2",
"typescript": "^3.7.3",
"vsce": "^2.11.0"
}
}