@tinyfiles/cli 0.1.9 → 0.1.11
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 +3 -3
- package/bin/at1.cjs +1 -1
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -22,11 +22,11 @@ matching your OS/arch (via the packages' `os`/`cpu` fields) — there is **no in
|
|
|
22
22
|
script**, so it works cleanly under npm, pnpm, yarn, and bun.
|
|
23
23
|
|
|
24
24
|
Supported: `win32-x64`, `darwin-x64`, `darwin-arm64`, `linux-x64`. On other platforms,
|
|
25
|
-
|
|
25
|
+
use the desktop app instead: https://tinyfiles.io/download.
|
|
26
26
|
|
|
27
27
|
## Notes
|
|
28
28
|
|
|
29
29
|
- **Decoding** an `.at1` is always free and needs no account. Heavy **encoding** is metered
|
|
30
|
-
against your AT-1 account (set `AT1_LICENSE_KEY`, or `at1 login`) — same as the
|
|
31
|
-
|
|
30
|
+
against your AT-1 account (set `AT1_LICENSE_KEY`, or `at1 login`) — same as the desktop
|
|
31
|
+
client. See https://tinyfiles.io/pricing.
|
|
32
32
|
- Decode-only in the browser/Node? Use [`@tinyfiles/decoder`](https://www.npmjs.com/package/@tinyfiles/decoder).
|
package/bin/at1.cjs
CHANGED
|
@@ -29,7 +29,7 @@ if (!bin) {
|
|
|
29
29
|
`AT-1: no prebuilt binary for ${process.platform}-${process.arch}.\n` +
|
|
30
30
|
`Supported: win32-x64, darwin-x64, darwin-arm64, linux-x64.\n` +
|
|
31
31
|
`If you're on one of those, reinstall so the platform package is fetched ` +
|
|
32
|
-
`(e.g. npm i -g @tinyfiles/cli).
|
|
32
|
+
`(e.g. npm i -g @tinyfiles/cli). On other platforms, use the desktop app: https://tinyfiles.io/download.\n`
|
|
33
33
|
);
|
|
34
34
|
process.exit(1);
|
|
35
35
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tinyfiles/cli",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.11",
|
|
4
4
|
"description": "AT-1 / TinyFiles CLI — verified-lossless, queryable compression. Native prebuilt binary, no Python required.",
|
|
5
5
|
"bin": {
|
|
6
6
|
"at1": "bin/at1.cjs"
|
|
@@ -10,8 +10,8 @@
|
|
|
10
10
|
"README.md"
|
|
11
11
|
],
|
|
12
12
|
"optionalDependencies": {
|
|
13
|
-
"@tinyfiles/cli-win32-x64": "0.1.
|
|
14
|
-
"@tinyfiles/cli-linux-x64": "0.1.
|
|
13
|
+
"@tinyfiles/cli-win32-x64": "0.1.11",
|
|
14
|
+
"@tinyfiles/cli-linux-x64": "0.1.11"
|
|
15
15
|
},
|
|
16
16
|
"engines": {
|
|
17
17
|
"node": ">=16"
|