-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
125 lines (125 loc) · 3.83 KB
/
package.json
File metadata and controls
125 lines (125 loc) · 3.83 KB
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
{
"name": "flink-sql",
"version": "1.13.7",
"displayName": "Flink SQL Helper",
"description": "Help you efficiently and focus on FlinkSQL development. support Flink SQL error grammar check, syntax highlighting, complete keywords, rename, find all references and code format.",
"publisher": "CamileSing",
"author": {
"name": "CamileSing",
"email": "CamileSing@gmail.com"
},
"license": "MIT",
"icon": "icons/Flink_Icons.png",
"engines": {
"vscode": "^1.20.0"
},
"galleryBanner": {
"color": "#F2C45A",
"theme": "dark"
},
"repository": {
"type": "git",
"url": "https://github.com/camilesing/flink-sql-vscode"
},
"homepage": "https://github.com/camilesing/flink-sql-vscode/master/README.md",
"categories": [
"Programming Languages",
"Formatters"
],
"keywords": [
"Flink SQL",
"Flink",
"Formatter"
],
"preview": false,
"contributes": {
"configuration": {
"title": "Error grammar Check Settings",
"properties": {
"flink-sql-grammar-check.enable": {
"type": "boolean",
"default": false,
"description": "Enable flink sql grammar check."
}
}
},
"languages": [
{
"id": "flink-sql",
"icon": {
"light": "./icons/Flink_Icons.png",
"dark": "./icons/Flink_Icons.png"
},
"aliases": [
"FlinkSQL",
"flink-sql",
"Flink SQL",
"fql"
],
"extensions": [
".sql",
".fql"
],
"configuration": "./language-configuration.json",
"capabilities": {
"renameProvider": "true",
"referencesProvider": "true"
}
}
],
"grammars": [
{
"language": "flink-sql",
"scopeName": "source.flink",
"path": "./syntaxes/flink.tmLanguage.json"
}
],
"snippets": [
{
"language": "flink-sql",
"path": "./snippets/snippets.json"
}
]
},
"activationEvents": [
"onLanguage:fql",
"onLanguage:flink-sql"
],
"scripts": {
"antlr4ts": "antlr4ng -Dlanguage=TypeScript -visitor gen/FlinkSQL.g4",
"vscode:prepublish": "webpack --mode production",
"compile": "webpack --mode none",
"watch": "webpack --mode none --watch",
"pretest": "npm run compile",
"lint": "eslint src --ext ts",
"test": "node ./out/test/runTest.js",
"unit-test": "npx tsc && node ./out/src/test/runUnitTests.js"
},
"main": "./out/extension.js",
"browser": "./out/extension.js",
"dependencies": {
"antlr4": "^4.13.2",
"antlr4ng": "^3.0.10",
"sql-formatter-plus": "git+ssh://git@github.com:AChangFeng/sql-formatter-plus.git#v0.0.3"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@types/glob": "^8.1.0",
"@types/mocha": "^10.0.1",
"@types/node": "16.x",
"@types/vscode": "^1.20.0",
"@typescript-eslint/eslint-plugin": "^5.59.1",
"@typescript-eslint/parser": "^5.59.1",
"@vscode/test-electron": "^2.3.0",
"antlr4ng-cli": "^2.0.0",
"eslint": "^8.57.1",
"glob": "^8.1.0",
"globals": "^16.5.0",
"mocha": "^10.2.0",
"ts-loader": "^9.4.3",
"typescript": "^5.0.4",
"typescript-eslint": "^8.50.0",
"webpack": "^5.88.0",
"webpack-cli": "^5.1.4"
}
}