sygal-cli 0.1.2 → 0.1.3
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 +12 -6
- package/package.json +3 -2
package/README.md
CHANGED
|
@@ -25,10 +25,13 @@ mode OCR différé).
|
|
|
25
25
|
npm install -g sygal-cli
|
|
26
26
|
```
|
|
27
27
|
|
|
28
|
-
Le moteur de conversion natif (macOS Apple Silicon, Windows x64
|
|
29
|
-
automatiquement. Essai gratuit 14 jours, puis licence
|
|
30
|
-
(https://sygal.lemonsqueezy.com) - un poste par activation,
|
|
31
|
-
l'app desktop.
|
|
28
|
+
Le moteur de conversion natif (macOS Apple Silicon, Windows x64, Linux x64)
|
|
29
|
+
est installé automatiquement. Essai gratuit 14 jours, puis licence
|
|
30
|
+
LemonSqueezy (https://sygal.lemonsqueezy.com) - un poste par activation,
|
|
31
|
+
pool partagé avec l'app desktop.
|
|
32
|
+
|
|
33
|
+
Sur Linux, le binaire nécessite glibc 2.28+ (Ubuntu 18.04+, Debian 10+,
|
|
34
|
+
RHEL 8+) - non compatible avec Alpine/musl.
|
|
32
35
|
|
|
33
36
|
### Conversion
|
|
34
37
|
|
|
@@ -101,11 +104,14 @@ leave your machine), API OCR for images, built for humans AND AI agents
|
|
|
101
104
|
npm install -g sygal-cli
|
|
102
105
|
```
|
|
103
106
|
|
|
104
|
-
Native conversion engine (macOS Apple Silicon, Windows x64)
|
|
105
|
-
automatically. 14-day free trial, then a LemonSqueezy license
|
|
107
|
+
Native conversion engine (macOS Apple Silicon, Windows x64, Linux x64)
|
|
108
|
+
installs automatically. 14-day free trial, then a LemonSqueezy license
|
|
106
109
|
(https://sygal.lemonsqueezy.com) - one seat per activation, shared with the
|
|
107
110
|
desktop app.
|
|
108
111
|
|
|
112
|
+
On Linux, the binary requires glibc 2.28+ (Ubuntu 18.04+, Debian 10+,
|
|
113
|
+
RHEL 8+) - not compatible with Alpine/musl.
|
|
114
|
+
|
|
109
115
|
### Usage
|
|
110
116
|
|
|
111
117
|
```bash
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "sygal-cli",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.3",
|
|
4
4
|
"description": "Sygal CLI - convert files and web pages to Markdown/JSON (local MarkItDown pipeline, OCR for images)",
|
|
5
5
|
"author": "Cyrill Semah",
|
|
6
6
|
"license": "SEE LICENSE IN LICENSE",
|
|
@@ -37,7 +37,8 @@
|
|
|
37
37
|
},
|
|
38
38
|
"optionalDependencies": {
|
|
39
39
|
"@sygal/sidecar-darwin-arm64": "0.1.2",
|
|
40
|
-
"@sygal/sidecar-win32-x64": "0.1.2"
|
|
40
|
+
"@sygal/sidecar-win32-x64": "0.1.2",
|
|
41
|
+
"@sygal/sidecar-linux-x64": "0.1.0"
|
|
41
42
|
},
|
|
42
43
|
"scripts": {
|
|
43
44
|
"build": "esbuild src/index.ts --bundle --platform=node --target=node20 --format=cjs --outfile=dist/index.js --external:sharp --external:gpt-tokenizer --external:commander --external:picocolors",
|