@dot-agent/language-server 0.5.0-alpha.2 → 0.10.1
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/CHANGELOG.md +19 -0
- package/package.json +5 -8
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
All notable changes to `@dot-agent/language-server` will be documented in this file.
|
|
4
|
+
|
|
5
|
+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
|
+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
|
+
|
|
8
|
+
---
|
|
9
|
+
|
|
10
|
+
## [0.10.1] - 2026-07-14
|
|
11
|
+
|
|
12
|
+
### Changed
|
|
13
|
+
- Pin-only release: `@dot-agent/parser-dsl`, `@dot-agent/compiler`, and `@dot-agent/tree-sitter` pins bumped to `0.10.1` to pick up their fixes from this release round. No code change in this package — it ships JS source directly and has no build step.
|
|
14
|
+
|
|
15
|
+
---
|
|
16
|
+
|
|
17
|
+
## [0.10.0] - 2026-07-10
|
|
18
|
+
|
|
19
|
+
- First public release on npm. See repository history for prior development.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dot-agent/language-server",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.10.1",
|
|
4
4
|
"description": "LSP server for .agent DSL files",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"author": {
|
|
@@ -37,7 +37,7 @@
|
|
|
37
37
|
"type": "module",
|
|
38
38
|
"main": "server.js",
|
|
39
39
|
"engines": {
|
|
40
|
-
"node": ">=
|
|
40
|
+
"node": ">=24.0.0"
|
|
41
41
|
},
|
|
42
42
|
"scripts": {
|
|
43
43
|
"start": "node server.js --stdio",
|
|
@@ -46,16 +46,13 @@
|
|
|
46
46
|
"test:watch": "vitest"
|
|
47
47
|
},
|
|
48
48
|
"dependencies": {
|
|
49
|
-
"@dot-agent/parser-dsl": "0.
|
|
50
|
-
"@dot-agent/compiler": "0.
|
|
51
|
-
"@dot-agent/tree-sitter": "0.
|
|
49
|
+
"@dot-agent/parser-dsl": "0.10.1",
|
|
50
|
+
"@dot-agent/compiler": "0.10.1",
|
|
51
|
+
"@dot-agent/tree-sitter": "0.10.1",
|
|
52
52
|
"vscode-languageserver": "^10.0.0",
|
|
53
53
|
"vscode-languageserver-textdocument": "^1.0.12",
|
|
54
54
|
"web-tree-sitter": "^0.26.9"
|
|
55
55
|
},
|
|
56
|
-
"devDependencies": {
|
|
57
|
-
"vitest": "^1.6.0"
|
|
58
|
-
},
|
|
59
56
|
"publishConfig": {
|
|
60
57
|
"access": "public"
|
|
61
58
|
}
|