-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.01 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.01 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
{
"name": "@sailfin/lsp",
"version": "0.1.0",
"description": "Language Server Protocol implementation for the Sailfin programming language",
"license": "MIT",
"repository": {
"type": "git",
"url": "git@github.com:SailfinIO/lsp.git"
},
"main": "dist/server.js",
"bin": {
"sailfin-lsp": "dist/server.js"
},
"scripts": {
"build": "node esbuild.js",
"build:production": "node esbuild.js --production",
"watch": "node esbuild.js --watch",
"check-types": "tsc --noEmit",
"lint": "eslint src",
"test": "vitest run",
"test:watch": "vitest"
},
"dependencies": {
"vscode-languageserver": "^9.0.1",
"vscode-languageserver-textdocument": "^1.0.12",
"vscode-uri": "^3.0.8"
},
"devDependencies": {
"@types/node": "20.x",
"@typescript-eslint/eslint-plugin": "^8.17.0",
"@typescript-eslint/parser": "^8.17.0",
"esbuild": "^0.25.0",
"eslint": "^9.16.0",
"typescript": "^5.7.2",
"vitest": "^3.0.0"
},
"engines": {
"node": ">=18"
}
}