generated from mtxr/vsc-sqltools-driver-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 3.02 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
{
"name": "sqltools-databricks-driver",
"displayName": "Databricks",
"description": "A Databricks driver for the SQLTools VSCode extension",
"version": "0.0.1",
"engines": {
"vscode": "^1.42.0"
},
"publisher": "davehowell",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/davehowell/sqltools-databricks-driver.git"
},
"bugs": {
"url": "https://github.com/davehowell/sqltools-databricks-driver/issues"
},
"keywords": [
"sqltools-driver",
"databricks"
],
"galleryBanner": {
"theme": "dark",
"color": "#333333"
},
"categories": [
"Programming Languages",
"Snippets",
"Formatters",
"Other"
],
"extensionDependencies": [
"mtxr.sqltools"
],
"activationEvents": [
"*",
"onLanguage:sql",
"onCommand:sqltools.*"
],
"main": "./out/extension.js",
"scripts": {
"lint": "eslint '*/**/*.{js,ts,tsx}' --quiet --fix",
"format": "prettier --ignore-path .gitignore --write \"**/*.+(js|ts|json)\"",
"clean": "rimraf -rf out dist *.vsix",
"predev": "yarn run clean",
"dev": "yarn run watch",
"prebuild": "yarn run clean && yarn run tsc-check",
"build": "cross-env NODE_ENV=production concurrently \"npm:build:*\"",
"build:ext": "yarn run compile:ext --define:process.env.NODE_ENV=\"'production'\" --minify",
"build:ls": "yarn run compile:ls --define:process.env.NODE_ENV=\"'production'\" --minify",
"esbuild": "esbuild --platform=node --tsconfig=./tsconfig.json --external:vscode --log-level=error --color=true --format=cjs",
"prepackage": "yarn run build",
"package": "vsce package --yarn -o .",
"compile:ext": "yarn run esbuild --bundle ./src/extension.ts --outfile=./out/extension.js --target=es2017 --define:process.env.PRODUCT=\"'ext'\"",
"compile:ls": "yarn run esbuild --bundle ./src/ls/plugin.ts --outfile=./out/ls/plugin.js --target=es2015 --define:process.env.PRODUCT=\"'ls'\"",
"tsc-check": "yarn run ts --noEmit --preserveWatchOutput",
"watch": "concurrently \"npm:watch:*\"",
"watch:ext": "yarn run compile:ext --define:process.env.NODE_ENV=\"'development'\" --sourcemap",
"watch:ls": "yarn run compile:ls --define:process.env.NODE_ENV=\"'development'\" --sourcemap",
"dev:tsc": "yarn run tsc-check -w",
"ts": "tsc -p ."
},
"devDependencies": {
"@babel/preset-env": "^7.5.5",
"@types/jest": "^28.1.6",
"@types/node": "^18.6.2",
"@types/vscode": "^1.42.0",
"@typescript-eslint/eslint-plugin": "^5.33.0",
"@typescript-eslint/parser": "^5.33.0",
"concurrently": "^7.3.0",
"dotenv": "^16.0.1",
"esbuild": "^0.15.3",
"eslint": "^8.21.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^28.1.3",
"prettier": "^2.7.1",
"ts-jest": "^28.0.7",
"typescript": "~4.0.2",
"vsce": "^2.10.0"
},
"dependencies": {
"@databricks/sql": "^0.1.8-beta.1",
"@sqltools/base-driver": "^0.1.10",
"@sqltools/types": "^0.1.5",
"@types/uuid": "^8.3.4",
"uuid": "^8.3.2"
}
}