-
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.39 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.39 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
{
"name": "npmx-language-server",
"type": "module",
"version": "0.7.0",
"private": true,
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/npmx-dev/vscode-npmx.git",
"directory": "packages/language-server"
},
"sideEffects": true,
"exports": {
".": "./dist/index.cjs"
},
"main": "./dist/index.cjs",
"bin": {
"npmx-language-server": "./dist/index.cjs"
},
"files": [
"bin/**/*",
"dist/**/*"
],
"scripts": {
"dev": "tsdown --watch",
"build": "tsdown"
},
"devDependencies": {
"@volar/language-server": "catalog:lsp",
"npmx-language-core": "workspace:*",
"npmx-language-service": "workspace:*",
"npmx-shared": "workspace:*",
"ocache": "catalog:inline",
"vscode-uri": "catalog:lsp"
},
"inlinedDependencies": {
"@volar/language-core": "2.4.28",
"@volar/language-server": "2.4.28",
"@volar/language-service": "2.4.28",
"@volar/source-map": "2.4.28",
"@volar/typescript": "2.4.28",
"ocache": "0.1.4",
"ofetch": "2.0.0-alpha.3",
"ohash": "2.0.11",
"path-browserify": "1.0.1",
"request-light": "0.7.0",
"semver": "7.7.4",
"vscode-jsonrpc": "8.2.0",
"vscode-languageserver": "9.0.1",
"vscode-languageserver-protocol": "3.17.5",
"vscode-languageserver-textdocument": "1.0.12",
"vscode-languageserver-types": "3.17.5",
"vscode-uri": "3.1.0"
}
}