-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.92 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.92 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
{
"name": "dot-language-server",
"version": "3.1.2",
"description": "Language server for the DOT language",
"keywords": [
"dot",
"graphviz",
"gv",
"language",
"lsp",
"protocol",
"server"
],
"license": "MIT",
"author": "Niklas Mollenhauer",
"repository": {
"type": "git",
"url": "https://github.com/nikeee/dot-language-server.git"
},
"bin": {
"dot-language-server": "bin/server.js"
},
"type": "module",
"scripts": {
"clean": "rimraf lib dist",
"build:linux-x64": "bun build --compile --minify src/cli.ts --target=bun-linux-x64-modern --outfile=dist/linux-x64/dot-language-server",
"build:linux-arm64": "bun build --compile --minify src/cli.ts --target=bun-linux-arm64-modern --outfile=dist/linux-arm64/dot-language-server",
"build:windows-x64": "bun build --compile --minify src/cli.ts --target=bun-windows-x64-modern --outfile=dist/windows-x64/dot-language-server.exe",
"build:darwin-arm64": "bun build --compile --minify src/cli.ts --target=bun-darwin-arm64-modern --outfile=dist/darwin-arm64/dot-language-server",
"build": "tsc && node --run build:linux-x64 && node --run build:linux-arm64 && node --run build:windows-x64 && node --run build:darwin-arm64",
"ci": "oxlint --type-check --type-aware -f github",
"format": "oxfmt",
"lint": "oxlint --type-aware",
"lint:fix": "oxlint --type-aware --fix",
"test": "tsc --noEmit",
"smoketest": "node --run build && node --test",
"prepublishOnly": "node --run clean && node --run build"
},
"dependencies": {
"dot-language-support": "^4.3.4",
"vscode-languageserver": "^10.1.0",
"vscode-languageserver-textdocument": "^1.0.12"
},
"devDependencies": {
"@types/node": "^26.1.1",
"bun": "^1.3.14",
"oxfmt": "^0.58.0",
"oxlint": "^1.73.0",
"oxlint-tsgolint": "^0.24.0",
"rimraf": "^6.1.3",
"typescript": "^7.0.2"
},
"engines": {
"node": ">=22"
}
}