-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
120 lines (120 loc) · 3.66 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
{
"name": "flink-sql",
"version": "1.13.0",
"displayName": "Flink SQL Helper",
"description": "Help you efficiently and focus on Flink SQL development. support Flink SQL error grammar check, syntax highlighting, complete keywords, rename, find all references and code format, including user-defined functions.",
"publisher": "CamileSing",
"author": {
"name": "CamileSing",
"email": "[email protected]"
},
"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": "antlr4ts -visitor gen/FlinkSQL.g4",
"vscode:prepublish": "webpack --mode production",
"compile": "webpack --mode none",
"watch": "webpack --mode none --watch",
"pretest": "npm run compile && npm run lint",
"lint": "eslint src --ext ts",
"test": "node ./out/test/runTest.js"
},
"main": "./out/extension.js",
"browser": "./out/extension.js",
"dependencies": {
"sql-formatter-plus": "git+ssh://[email protected]:AChangFeng/sql-formatter-plus.git#v0.0.3"
},
"devDependencies": {
"@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",
"antlr4ts": "^0.5.0-alpha.4",
"antlr4ts-cli": "^0.5.0-alpha.4",
"eslint": "^8.39.0",
"glob": "^8.1.0",
"mocha": "^10.2.0",
"ts-loader": "^9.4.3",
"typescript": "^5.0.4",
"webpack": "^5.88.0",
"webpack-cli": "^5.1.4"
}
}