@t1ckbase/vscode-langservers-extracted 2.0.2 → 2.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +7 -5
- package/dist/cssServerMain.js +38 -40
- package/dist/htmlServerMain.js +59 -56
- package/dist/jsonServerMain.js +39 -39
- package/package.json +11 -11
- package/upstream.json +7 -0
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://www.schemastore.org/package.json",
|
|
3
3
|
"name": "@t1ckbase/vscode-langservers-extracted",
|
|
4
|
-
"version": "2.0.
|
|
5
|
-
"description": "Language servers extracted from
|
|
4
|
+
"version": "2.0.4",
|
|
5
|
+
"description": "Language servers extracted from VS Code for HTML, CSS, JSON, Markdown, and ESLint",
|
|
6
6
|
"keywords": [
|
|
7
7
|
"autocomplete",
|
|
8
8
|
"css",
|
|
@@ -38,7 +38,8 @@
|
|
|
38
38
|
"vscode-markdown-language-server": "bin/markdown.js"
|
|
39
39
|
},
|
|
40
40
|
"files": [
|
|
41
|
-
"dist"
|
|
41
|
+
"dist",
|
|
42
|
+
"upstream.json"
|
|
42
43
|
],
|
|
43
44
|
"type": "module",
|
|
44
45
|
"publishConfig": {
|
|
@@ -46,9 +47,9 @@
|
|
|
46
47
|
},
|
|
47
48
|
"scripts": {
|
|
48
49
|
"format": "oxfmt",
|
|
49
|
-
"build": "bun
|
|
50
|
-
"update": "bun
|
|
51
|
-
"test": "bun test
|
|
50
|
+
"build": "bun build.ts",
|
|
51
|
+
"update": "bun build.ts --update",
|
|
52
|
+
"test": "bun test ./lsp.test.ts"
|
|
52
53
|
},
|
|
53
54
|
"dependencies": {
|
|
54
55
|
"typescript": "^6.0.3",
|
|
@@ -56,12 +57,11 @@
|
|
|
56
57
|
},
|
|
57
58
|
"devDependencies": {
|
|
58
59
|
"@types/bun": "latest",
|
|
59
|
-
"
|
|
60
|
-
"
|
|
60
|
+
"eslint": "^10.10.0",
|
|
61
|
+
"oxfmt": "^0.67.0",
|
|
61
62
|
"vscode-languageserver-protocol": "^3.17.5"
|
|
62
63
|
},
|
|
63
|
-
"
|
|
64
|
-
"
|
|
65
|
-
"vscode-eslint": "3.0.34"
|
|
64
|
+
"engines": {
|
|
65
|
+
"node": ">=22"
|
|
66
66
|
}
|
|
67
67
|
}
|