@superdoc/cli 0.24.0 → 0.25.0
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 -7
- package/dist/index.js +8949 -4298
- package/package.json +14 -13
package/README.md
CHANGED
|
@@ -1,22 +1,22 @@
|
|
|
1
|
-
# @superdoc
|
|
1
|
+
# @superdoc/cli
|
|
2
2
|
|
|
3
3
|
LLM-first CLI for deterministic DOCX operations through SuperDoc's Document API.
|
|
4
4
|
|
|
5
5
|
## Install
|
|
6
6
|
|
|
7
7
|
```bash
|
|
8
|
-
npm install -g @superdoc
|
|
8
|
+
npm install -g @superdoc/cli
|
|
9
9
|
```
|
|
10
10
|
|
|
11
11
|
The package automatically installs a native binary for your platform via optionalDependencies. Supported platforms:
|
|
12
12
|
|
|
13
13
|
| Platform | Package |
|
|
14
14
|
|----------|---------|
|
|
15
|
-
| macOS (Apple Silicon) | `@superdoc
|
|
16
|
-
| macOS (Intel) | `@superdoc
|
|
17
|
-
| Linux (x64) | `@superdoc
|
|
18
|
-
| Linux (ARM64) | `@superdoc
|
|
19
|
-
| Windows (x64) | `@superdoc
|
|
15
|
+
| macOS (Apple Silicon) | `@superdoc/cli-darwin-arm64` |
|
|
16
|
+
| macOS (Intel) | `@superdoc/cli-darwin-x64` |
|
|
17
|
+
| Linux (x64) | `@superdoc/cli-linux-x64` |
|
|
18
|
+
| Linux (ARM64) | `@superdoc/cli-linux-arm64` |
|
|
19
|
+
| Windows (x64) | `@superdoc/cli-windows-x64` |
|
|
20
20
|
|
|
21
21
|
## Usage
|
|
22
22
|
|