@bgforge/mls-server 3.0.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/LICENSE.txt ADDED
File without changes
package/README.md ADDED
@@ -0,0 +1,42 @@
1
+ # @bgforge/mls-server
2
+
3
+ Standalone LSP server for WeiDU languages, Fallout 2 SSL, and transpiled TSSL, TBAF, TD.
4
+
5
+ ## Supported Languages
6
+
7
+ | Language | Extensions | Features |
8
+ | ---------------- | ------------------------------ | ---------------------------------------------------------------------------------------- |
9
+ | Fallout SSL | `.ssl`, `.h` | Completion, hover, signature, go-to-definition, formatting, symbols, rename, inlay hints |
10
+ | WeiDU TP2 | `.tp2`, `.tpa`, `.tph`, `.tpp` | Completion, hover, go-to-definition, formatting, symbols, rename, inlay hints |
11
+ | WeiDU BAF | `.baf` | Completion, hover, formatting, inlay hints |
12
+ | WeiDU D | `.d` | Completion, hover, go-to-definition, formatting, symbols, inlay hints |
13
+ | Fallout worldmap | `worldmap.txt` | Completion, hover |
14
+
15
+ Aliases: SCS SSL (`.ssl`) and SLB (`.slb`) are treated as WeiDU BAF.
16
+
17
+ Transpiler support (TypeScript to target language): TSSL, TBAF, TD.
18
+
19
+ ## Installation
20
+
21
+ ```bash
22
+ npm install -g @bgforge/mls-server
23
+ ```
24
+
25
+ ## Usage
26
+
27
+ The server communicates over stdio:
28
+
29
+ ```bash
30
+ bgforge-mls-server --stdio
31
+ ```
32
+
33
+ [Settings Reference](../docs/settings.md) - All server settings with defaults.
34
+
35
+ See [USAGE.md](USAGE.md) for editor setup guides and settings reference.
36
+
37
+ ## Links
38
+
39
+ - [VSCode extension](https://marketplace.visualstudio.com/items?itemName=BGforge.bgforge-mls) (full-featured client)
40
+ - [Source code](https://github.com/BGforgeNet/VScode-BGforge-MLS)
41
+ - [Issue tracker](https://github.com/BGforgeNet/VScode-BGforge-MLS/issues)
42
+ - [Architecture](ARCHITECTURE.md) (server internals for contributors)