@ifc-lite/server-bin 1.16.3 → 1.16.5

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.
Files changed (2) hide show
  1. package/README.md +6 -2
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -13,7 +13,7 @@ npm install -g @ifc-lite/server-bin
13
13
  ifc-lite-server
14
14
  ```
15
15
 
16
- The server starts on `http://localhost:8080` by default. Point [`@ifc-lite/server-client`](../server-client/README.md) at it and you've got a parsing backend with caching, streaming, and parallel processing.
16
+ The server starts on `http://localhost:8080` by default. Point [`@ifc-lite/server-client`](https://www.npmjs.com/package/@ifc-lite/server-client) at it and you've got a parsing backend with caching, streaming, and parallel processing.
17
17
 
18
18
  ## CLI
19
19
 
@@ -111,9 +111,13 @@ cargo build --release
111
111
  | `runBinary(args?)` | Run the server with optional args — resolves with exit code |
112
112
  | `ensureBinary(onProgress?)` | Download if missing — resolves with binary path |
113
113
  | `downloadBinary(onProgress?)` | Force re-download — resolves with binary path |
114
- | `getBinaryInfo()` | Returns `{ platform, version, isCached, cachePath }` |
114
+ | `getBinaryInfo()` | Returns `{ platform, binaryPath, cacheDir, isCached }` |
115
115
  | `isBinaryCached()` | Boolean — is the binary on disk? |
116
116
 
117
+ ## Docs
118
+
119
+ See the [Server Guide](https://ltplus-ag.github.io/ifc-lite/guide/server/).
120
+
117
121
  ## License
118
122
 
119
123
  [MPL-2.0](https://mozilla.org/MPL/2.0/)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ifc-lite/server-bin",
3
- "version": "1.16.3",
3
+ "version": "1.16.5",
4
4
  "description": "Pre-built IFC-Lite server binary - run without Docker or Rust",
5
5
  "type": "module",
6
6
  "bin": {
@@ -20,10 +20,10 @@
20
20
  "README.md"
21
21
  ],
22
22
  "dependencies": {
23
- "tar": "^7.5.16"
23
+ "tar": "^7.5.19"
24
24
  },
25
25
  "devDependencies": {
26
- "@types/node": "^25.9.2",
26
+ "@types/node": "^26.1.0",
27
27
  "typescript": "^6.0.3"
28
28
  },
29
29
  "engines": {