-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
181 lines (181 loc) · 5.55 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
174
175
176
177
178
179
180
181
{
"private": true,
"name": "bq-extension-vscode",
"displayName": "BigQuery Extension for VSCode",
"description": "Code completion / Code Formatting / Dry run / Hover information",
"icon": "icon.png",
"repository": {
"type": "git",
"url": "https://github.com/kitta65/bq-extension-vscode"
},
"author": "kitta65",
"license": "MIT",
"version": "0.0.54",
"publisher": "dr666m1",
"categories": [
"Programming Languages",
"Formatters",
"Linters"
],
"keywords": [
"BigQuery"
],
"engines": {
"vscode": "^1.92.0"
},
"activationEvents": [],
"main": "./client/out/extension",
"contributes": {
"languages": [
{
"id": "bigquery",
"extensions": [
".bq",
".bigquery"
],
"aliases": [
"BigQuery"
],
"filenames": [],
"firstLine": "#standardSQL",
"configuration": "./language-configuration.json"
}
],
"commands": [
{
"command": "bqExtensionVSCode.dryRun",
"title": "Dry Run",
"category": "BQExtensionVSCode"
},
{
"command": "bqExtensionVSCode.clearCache",
"title": "Clear Cache",
"category": "BQExtensionVSCode"
},
{
"command": "bqExtensionVSCode.updateCache",
"title": "Update Cache",
"category": "BQExtensionVSCode"
}
],
"menus": {
"commandPalette": [
{
"command": "bqExtensionVSCode.dryRun",
"when": "editorLangId == bigquery"
},
{
"command": "bqExtensionVSCode.clearCache",
"when": "editorLangId == bigquery"
},
{
"command": "bqExtensionVSCode.updateCache",
"when": "editorLangId == bigquery"
}
]
},
"configuration": {
"title": "BigQuery Extension for Visual Studio Code",
"properties": {
"bqExtensionVSCode.diagnostic.dryRunOnSave": {
"scope": "application",
"type": "boolean",
"default": true,
"markdownDescription": "When enabled dry run is executed on save."
},
"bqExtensionVSCode.diagnostic.forVSCode": {
"scope": "application",
"type": "boolean",
"default": true,
"markdownDescription": "Use [these](https://code.visualstudio.com/api/language-extensions/language-server-extension-guide#diagnostics-tips-and-tricks) tips and tricks or not."
},
"bqExtensionVSCode.formatting.formatMultilineComment": {
"type": "boolean",
"default": false,
"markdownDescription": "(experimental) Print multiline commnets in ['starred-block'](https://eslint.org/docs/rules/multiline-comment-style) style."
},
"bqExtensionVSCode.formatting.indentCte": {
"type": "boolean",
"default": true,
"markdownDescription": "Indent CTEs in with clause."
},
"bqExtensionVSCode.formatting.printBlankLineAfterCte": {
"type": "boolean",
"default": false,
"markdownDescription": "Print blank line after CTE in with clause."
},
"bqExtensionVSCode.formatting.printKeywordsInUpperCase": {
"type": "boolean",
"default": true,
"markdownDescription": "Print [reserved keywords](https://cloud.google.com/bigquery/docs/reference/standard-sql/lexical#reserved_keywords) and functions in upper case."
},
"bqExtensionVSCode.formatting.printPseudoColumnsInUpperCase": {
"type": "boolean",
"default": true,
"markdownDescription": "Print pseudo columns (e.g. `_PARTITIONDATE`, `_PARTITIONTIME`) in upper case. When `printKeywordsInUpperCase` is `false`, this option is ignored."
},
"bqExtensionVSCode.trace.server": {
"scope": "application",
"type": "string",
"default": "messages",
"enum": [
"off",
"messages",
"verbose"
],
"description": "Log communications between Client / Server."
}
}
},
"grammars": [
{
"language": "bigquery",
"path": "./syntaxes/bigquery.tmGrammar.json",
"scopeName": "source.bigquery"
},
{
"path": "./syntaxes/injection.json",
"scopeName": "bigquery.injection",
"injectTo": [
"source.bigquery"
]
}
]
},
"scripts": {
"compile": "tsc -b",
"watch": "tsc -b -w",
"lint": "prettier --check client/src server/src && eslint client/src server/src",
"postinstall": "cd client && npm install && cd ../server && npm install && cd ..",
"test": "tsc -b && node client/out/test/runTest"
},
"dependencies": {
"@google-cloud/bigquery": "^7.9.0",
"dblite": "^1.1.4",
"prettier-plugin-bq": "0.2.57",
"vscode-languageclient": "^9.0.1",
"vscode-languageserver": "^9.0.1",
"vscode-languageserver-textdocument": "^1.0.12"
},
"devDependencies": {
"@types/glob": "^8.1.0",
"@types/mocha": "^10.0.8",
"@types/node": "^22.7.4",
"@types/vscode": "^1.92.0",
"@typescript-eslint/eslint-plugin": "^8.7.0",
"@typescript-eslint/parser": "^8.7.0",
"@vscode/test-electron": "^2.4.1",
"@vscode/vsce": "^3.1.0",
"eslint": "^9.0.0",
"eslint-config-prettier": "^9.1.0",
"glob": "^11.0.0",
"mocha": "^10.7.3",
"typescript": "^5.6.2"
},
"__metadata": {
"id": "c2d7b81e-c3d1-4219-94e7-6f3e5f762c79",
"publisherDisplayName": "kitta65",
"publisherId": "1e50daec-9b8a-4154-80c8-c8741297c2a4",
"isPreReleaseVersion": false
}
}