@glrs-dev/assume-linux-x64 0.6.4

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 ADDED
@@ -0,0 +1,24 @@
1
+ # @glrs-dev/assume-linux-x64
2
+
3
+ Prebuilt `gs-assume` binary for Linux x64.
4
+
5
+ This is an **internal** distribution package. You should not install this directly. Instead install the main package:
6
+
7
+ ```bash
8
+ npm i -g @glrs-dev/assume
9
+ ```
10
+
11
+ The main package lists this one as an `optionalDependency`. npm and pnpm and bun all honor the `os` + `cpu` fields in this package's `package.json`, so only users on linux-x64 will actually download this tarball.
12
+
13
+ If you hit a "platform package not found" error from `@glrs-dev/assume`, you may have run `npm install --no-optional` or have a package manager that silently skipped the optional dep. In that case install this package explicitly:
14
+
15
+ ```bash
16
+ npm i @glrs-dev/assume-linux-x64
17
+ ```
18
+
19
+
20
+ See the [main package](https://www.npmjs.com/package/@glrs-dev/assume) for usage, or [glrs.dev/assume](https://glrs.dev/assume) for full docs.
21
+
22
+ ## License
23
+
24
+ MIT — see the [repo](https://github.com/iceglober/glrs).
package/bin/.gitkeep ADDED
@@ -0,0 +1,2 @@
1
+ # Binaries for this platform are populated during the release workflow by
2
+ # scripts/pack-platform-tarballs.mjs. See darwin-arm64/bin/.gitkeep.
package/bin/gs-assume ADDED
Binary file
package/bin/gsa ADDED
Binary file
package/package.json ADDED
@@ -0,0 +1,33 @@
1
+ {
2
+ "name": "@glrs-dev/assume-linux-x64",
3
+ "version": "0.6.4",
4
+ "publishConfig": {
5
+ "access": "public"
6
+ },
7
+ "description": "Prebuilt gs-assume binary for Linux x64. Installed automatically as an optional dependency of @glrs-dev/assume.",
8
+ "license": "MIT",
9
+ "repository": {
10
+ "type": "git",
11
+ "url": "git+https://github.com/iceglober/glrs.git",
12
+ "directory": "packages/assume/npm/linux-x64"
13
+ },
14
+ "homepage": "https://glrs.dev/assume",
15
+ "bugs": {
16
+ "url": "https://github.com/iceglober/glrs/issues"
17
+ },
18
+ "os": [
19
+ "linux"
20
+ ],
21
+ "cpu": [
22
+ "x64"
23
+ ],
24
+ "files": [
25
+ "bin"
26
+ ],
27
+ "bin": {
28
+ "gs-assume-bin": "./bin/gs-assume"
29
+ },
30
+ "engines": {
31
+ "node": ">=20.10"
32
+ }
33
+ }