-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
76 lines (76 loc) · 2.17 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
{
"name": "glsl-language-server",
"version": "0.0.1",
"displayName": "GLSL Language Server",
"description": "A Node-based language server for the GLSL shader language.",
"engines": {
"node": "*"
},
"license": "MIT",
"keywords": [
"glsl",
"shader",
"webgl",
"opengl",
"vulkan"
],
"main": "./out/server-desktop",
"browser": "./out/server-web",
"author": {
"name": "Rácz Zalán",
"email": "[email protected]",
"url": "https://github.com/racz16"
},
"homepage": "https://github.com/racz16/GLSL-Language-Server",
"repository": {
"type": "git",
"url": "https://github.com/racz16/GLSL-Language-Server"
},
"bugs": {
"url": "https://github.com/racz16/GLSL-Language-Server/issues",
"email": "[email protected]"
},
"os": [
"win32",
"linux",
"darwin"
],
"scripts": {
"build-production": "webpack --mode production",
"build": "webpack",
"watch": "webpack --watch",
"prettier-lint": "prettier --check .",
"prettier-format": "prettier --write .",
"lint": "eslint ./src",
"test": "mocha ./src/**/*.spec.ts --require ts-node/register",
"prepare": "husky install"
},
"dependencies": {
"chokidar": "^3.6.0",
"vscode-languageserver": "^9.0.1",
"vscode-languageserver-textdocument": "^1.0.12",
"vscode-uri": "^3.0.8"
},
"devDependencies": {
"@eslint/js": "^9.10.0",
"@types/eslint__js": "^8.42.3",
"@types/mocha": "^10.0.7",
"@types/node": "^22.5.4",
"eslint": "^9.10.0",
"husky": "^9.1.5",
"lint-staged": "^15.2.10",
"mocha": "^10.7.3",
"pkg": "^5.8.1",
"prettier": "^3.3.3",
"prettier-plugin-organize-imports": "^4.0.0",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"typescript": "^5.5.4",
"typescript-eslint": "^8.4.0",
"webpack": "^5.94.0",
"webpack-cli": "^5.1.4"
},
"lint-staged": {
"*.{ts,json,yml,md}": "prettier --write --ignore-unknown"
}
}