-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 2.17 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 2.17 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
{
"name": "dagor-shader-language-server",
"displayName": "Dagor Shader Language Server",
"description": "Language Server for the Dagor Shader Language",
"publisher": "gaijin",
"version": "0.0.1",
"license": "BSD-3-Clause",
"repository": {
"type": "git",
"url": "https://github.com/GaijinEntertainment/Dagor-Shader-Language-Server"
},
"bugs": {
"url": "https://github.com/GaijinEntertainment/Dagor-Shader-Language-Server/issues"
},
"engines": {
"node": "*"
},
"main": "./out/server-desktop",
"browser": "./out/server-web",
"scripts": {
"build-production": "webpack --mode production",
"build": "webpack",
"generate-dshl-antlr": "antlr4ts -o src/_generated grammar/antlr/DshlLexer.g4 && antlr4ts -o src/_generated -no-listener -visitor grammar/antlr/DshlParser.g4",
"generate-condition-antlr": "antlr4ts -o src/_generated grammar/antlr/ConditionLexer.g4 && antlr4ts -o src/_generated -no-listener -visitor grammar/antlr/ConditionParser.g4",
"watch": "webpack --watch",
"eslint": "eslint ./src --ext .ts",
"prettier-lint": "prettier --check .",
"prettier-format": "prettier --write .",
"prepare": "husky install"
},
"dependencies": {
"antlr4ts": "^0.5.0-alpha.4",
"assert": "^2.1.0",
"chokidar": "^3.6.0",
"path-browserify": "^1.0.1",
"process": "^0.11.10",
"vscode-languageserver": "^9.0.1",
"vscode-languageserver-textdocument": "^1.0.11",
"vscode-uri": "^3.0.8"
},
"devDependencies": {
"@types/node": "^20.14.2",
"@typescript-eslint/eslint-plugin": "^7.13.0",
"@typescript-eslint/parser": "^7.13.0",
"antlr4ts-cli": "^0.5.0-alpha.4",
"eslint": "^8.57.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.7",
"pkg": "^5.8.1",
"prettier": "^3.3.2",
"prettier-plugin-organize-imports": "^3.2.4",
"ts-loader": "^9.5.1",
"typescript": "^5.4.5",
"webpack": "^5.92.0",
"webpack-cli": "^5.1.4"
},
"lint-staged": {
"*": "prettier --write --ignore-unknown"
}
}