-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 946 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 946 Bytes
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
{
"name": "@knuckles/language-server",
"version": "0.14.0",
"description": "Implements the language service protocol (LSP) for Knuckles.",
"repository": {
"type": "git",
"url": "https://github.com/tscpp/knuckles",
"directory": "packages/ssr"
},
"license": "MIT",
"type": "module",
"exports": "./src/index.ts",
"dependencies": {
"@knuckles/analyzer": "workspace:~",
"@knuckles/config": "workspace:~",
"@knuckles/fabricator": "workspace:~",
"@knuckles/location": "workspace:~",
"@knuckles/parser": "workspace:~",
"@knuckles/syntax-tree": "workspace:~",
"@knuckles/typescript": "workspace:~",
"minimatch": "^9.0.4",
"ts-morph": "^22.0.0",
"vscode-languageserver": "^9.0.1",
"vscode-languageserver-textdocument": "^1.0.11"
},
"devDependencies": {
"typescript": "^5.4.5"
},
"engines": {
"node": ">=20.0.0"
},
"publishConfig": {
"access": "public"
}
}