-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.23 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
{
"name": "jsoniq-language-server",
"description": "JSONiq syntax highlighting for Visual Studio Code through language server adaptation",
"version": "1.1.3",
"author": "JSONiq Development Team",
"license": "Apache-2.0",
"type": "module",
"engines": {
"node": "*"
},
"scripts": {
"antlr4ts": "antlr4ts -visitor ./src/grammar/jsoniq.g4",
"antlr4ng": "antlr4ng -Dlanguage=TypeScript ./src/grammar/antlr4ng/jsoniq.g4",
"test": "jest",
"prepublishOnly": "npm run compile",
"compile": "tsc -b"
},
"repository": {
"type": "git",
"url": "https://github.com/DavidBuzatu-Marian/Jsoniq-LanguageServer"
},
"dependencies": {
"antlr4-c3": "^3.4.1",
"antlr4ng": "^3.0.4",
"antlr4ng-cli": "^2.0.0",
"antlr4ts": "^0.5.0-alpha.4",
"tsx": "^4.10.2",
"vscode-languageserver": "^9.0.1"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"antlr4ts-cli": "^0.5.0-alpha.4",
"jest": "^29.7.0",
"ts-jest": "^29.1.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.4.5",
"typescript-transform-paths": "^3.4.7"
},
"keywords": [
"jsoniq",
"language-server"
],
"files": [
"/dest"
],
"publishConfig": {
"registry": "https://registry.npmjs.org/"
}
}