-
-
Notifications
You must be signed in to change notification settings - Fork 65
/
package.json
82 lines (82 loc) · 2.34 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
{
"name": "@elm-tooling/elm-language-server",
"description": "Implementation of an elm language server in node.",
"version": "2.8.0",
"author": "Kolja Lampe",
"license": "MIT",
"main": "./out/module.js",
"files": [
"out"
],
"engines": {
"node": ">=16.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/elm-tooling/elm-language-server"
},
"dependencies": {
"chokidar": "^3.5.3",
"escape-string-regexp": "^4.0.0",
"execa": "^5.1.1",
"fast-diff": "^1.3.0",
"globby": "^11.0.4",
"pjson": "1.0.9",
"reflect-metadata": "^0.2.1",
"request-light": "^0.7.0",
"ts-debounce": "^4.0.0",
"tsyringe": "^4.8.0",
"vscode-languageserver": "^9.0.1",
"vscode-languageserver-textdocument": "1.0.11",
"vscode-uri": "^3.0.8",
"web-tree-sitter": "^0.20.8"
},
"devDependencies": {
"@elm-tooling/tree-sitter-elm": "^5.7.0",
"@types/jest": "^29.5.11",
"@types/node": "^20.10.5",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/parser": "^6.15.0",
"copyfiles": "^2.4.1",
"doctoc": "^2.2.1",
"elm-format": "^0.8.7",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.1",
"jest": "^29.7.0",
"jest-diff": "^29.7.0",
"jest-mock-extended": "^3.0.5",
"prettier": "^3.1.1",
"tree-sitter-cli": "^0.20.8",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"typescript": "5.3.3"
},
"scripts": {
"version-patch": "npm --no-git-tag-version version patch",
"version-minor": "npm --no-git-tag-version version minor",
"version-major": "npm --no-git-tag-version version major",
"version": "npm i && npm run compile",
"copy-wasm": "copyfiles ./tree-sitter-elm.wasm out",
"compile": "npm run copy-wasm && tsc -p ./",
"watch": "npm run copy-wasm && tsc -watch -p ./",
"lint": "eslint -c .eslintrc.js --ext .ts src",
"lint:fix": "eslint --fix -c .eslintrc.js --ext .ts src",
"build-tree-sitter": "tree-sitter build-wasm ./node_modules/@elm-tooling/tree-sitter-elm",
"test": "jest --coverage",
"generate-toc": "doctoc README.md"
},
"bin": {
"elm-language-server": "out/node/index.js"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"elm",
"elm-lang",
"language server",
"language-server",
"lsp"
]
}