-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
75 lines (75 loc) · 2.22 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
{
"name": "trino-driver-sqltools",
"displayName": "Trino Driver",
"description": "Trino Driver for SQLTools",
"version": "0.1.3",
"engines": {
"vscode": "^1.73.1"
},
"publisher": "Revolut",
"license": "MIT",
"icon": "icon.png",
"repository": {
"type": "git",
"url": "https://github.com/revolut-engineering/trino-loadbalancer"
},
"bugs": {
"url": "https://github.com/revolut-engineering/trino-loadbalancer/issues"
},
"scripts": {
"clean": "rimraf -rf out *.vsix",
"esbuild:ext": "esbuild ./src/extension.ts --bundle --external:vscode --platform=node --tsconfig=./tsconfig.json --log-level=info --color=true --format=cjs --target=es2017 --minify --outfile=./out/extension.js",
"esbuild:ls": "esbuild ./src/ls/plugin.ts --bundle --external:vscode --platform=node --tsconfig=./tsconfig.json --log-level=info --color=true --format=cjs --target=es2017 --minify --outfile=./out/ls/plugin.js",
"esbuild": "yarn esbuild:ext && yarn esbuild:ls",
"copy": "cp package.json ./out/ls",
"prepackage": "yarn install && yarn clean && yarn esbuild && yarn copy",
"package": "vsce package --yarn --allow-star-activation",
"publish": "vsce publish --yarn --allow-star-activation",
"test-compile": "tsc -p ./",
"watch": "tsc -watch -p ./"
},
"keywords": [
"Trino",
"Trinodb",
"trino",
"trino-driver",
"trinodb",
"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",
"axios": "1.2.1",
"uuid": "^9.0.0",
"yarn": "^1.22.19"
},
"devDependencies": {
"@babel/preset-env": "^7.20.2",
"@types/node": "^18.11.18",
"@types/vscode": "^1.73.1",
"@typescript-eslint/eslint-plugin": "^5.50.0",
"@typescript-eslint/parser": "^5.50.0",
"esbuild": "^0.17.5",
"eslint": "^8.33.0",
"eslint-config-prettier": "^8.6.0",
"prettier": "^2.8.3",
"rimraf": "^4.1.2",
"typescript": "^4.9.5",
"vsce": "^2.15.0"
}
}