-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.7 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.7 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
61
62
63
64
65
66
67
68
69
70
71
{
"author": "Eduardo Fernandes, Anatoliy Baskakov, Roman Nabiullin",
"bin": {
"eo-lsp-server": "dist/index.js"
},
"config": {
"grammar": {
"commit": "c6d149991f1dcfd131cbf5c100a2ad936f1a8af4"
}
},
"dependencies": {
"antlr4": "^4.13.2",
"vscode-languageserver": "^9.0.0",
"vscode-languageserver-textdocument": "^1.0.4"
},
"description": "Language Server for a syntax highlighter for the EO Language",
"devDependencies": {
"@babel/core": "^7.20.5",
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.27.1",
"@types/eslint": "^9.0.0",
"@types/jest": "^30.0.0",
"@types/mocha": "^10.0.1",
"@types/node": "^24.0.0",
"@types/vscode": "^1.63.0",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"@vercel/ncc": "^0.38.3",
"@yao-pkg/pkg": "^6.4.0",
"babel-jest": "^30.0.0",
"eslint": "^9.0.0",
"eslint-config-eslint": "^13.0.0",
"eslint-plugin-import": "^2.32.0",
"jest": "^30.0.0",
"js-yaml": "^4.1.0",
"mocha": "^11.0.0",
"ts-node": "^10.9.1",
"typedoc": "^0.28.0",
"typescript": "^5.0.0",
"vsce": "^2.13.0"
},
"engines": {
"node": ">=14.0.0"
},
"keywords": [
"lsp",
"lsp-server",
"eolang"
],
"license": "MIT",
"name": "eo-lsp-server",
"pkg": {
"assets": "dist/EoLexer.tokens",
"outputPath": "bin",
"targets": [
"node20-linux-x64",
"node20-macos-x64",
"node20-win-x64"
]
},
"repository": {
"type": "git",
"url": "https://github.com/objectionary/eo-lsp-server"
},
"scripts": {
"build": "make build",
"lint": "make lint",
"test": "make test"
},
"version": "0.0.0"
}