@lapidist/dtif-language-server 1.0.3 → 1.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 +1 -1
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
`@lapidist/dtif-language-server` delivers Language Server Protocol (LSP) services for the Design Token Interchange Format (DTIF). It brings schema-backed diagnostics, pointer-aware navigation, and assisted authoring into any editor that can host a Node.js language server.
|
|
4
4
|
|
|
5
|
-
> **Runtime** · Node.js 22<br>
|
|
5
|
+
> **Runtime** · Node.js 22 or newer<br>
|
|
6
6
|
> **Transports** · stdio (default), custom message readers/writers
|
|
7
7
|
|
|
8
8
|
## Capabilities
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lapidist/dtif-language-server",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.4",
|
|
4
4
|
"description": "Language Server Protocol implementation for the Design Token Interchange Format (DTIF).",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
@@ -25,9 +25,9 @@
|
|
|
25
25
|
"prepack": "npm run build"
|
|
26
26
|
},
|
|
27
27
|
"dependencies": {
|
|
28
|
-
"@lapidist/dtif-parser": "1.0.
|
|
29
|
-
"@lapidist/dtif-schema": "1.0.
|
|
30
|
-
"@lapidist/dtif-validator": "1.0.
|
|
28
|
+
"@lapidist/dtif-parser": "1.0.4",
|
|
29
|
+
"@lapidist/dtif-schema": "1.0.4",
|
|
30
|
+
"@lapidist/dtif-validator": "1.0.4",
|
|
31
31
|
"jsonc-parser": "^3.3.1",
|
|
32
32
|
"vscode-languageserver": "^9.0.1",
|
|
33
33
|
"vscode-languageserver-textdocument": "^1.0.11"
|