@joggr/cli-linux-x64 0.1.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 +21 -0
- package/jog +0 -0
- package/package.json +32 -0
package/README.md
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
# @joggr/cli-linux-x64
|
|
2
|
+
|
|
3
|
+
Platform binary for **Linux x64** (glibc).
|
|
4
|
+
|
|
5
|
+
This package is automatically installed as an optional dependency of [`@joggr/cli`](https://www.npmjs.com/package/@joggr/cli). You should not need to install it directly.
|
|
6
|
+
|
|
7
|
+
## Install the CLI
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
npm install -g @joggr/cli
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
See [@joggr/cli](https://www.npmjs.com/package/@joggr/cli) for usage and documentation.
|
|
14
|
+
|
|
15
|
+
## Why a separate package?
|
|
16
|
+
|
|
17
|
+
This package exists because npm has no built-in mechanism for distributing platform-specific binaries. Instead, each platform gets its own package so your package manager only downloads the binary for your current platform. See [Sentry's guide to publishing binaries on npm](https://sentry.engineering/blog/publishing-binaries-on-npm) for a detailed explanation of this pattern.
|
|
18
|
+
|
|
19
|
+
## License
|
|
20
|
+
|
|
21
|
+
MIT
|
package/jog
ADDED
|
Binary file
|
package/package.json
ADDED
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@joggr/cli-linux-x64",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"private": false,
|
|
5
|
+
"description": "Joggr CLI binary for Linux x64",
|
|
6
|
+
"license": "SEE LICENSE IN LICENSE.md",
|
|
7
|
+
"repository": {
|
|
8
|
+
"type": "git",
|
|
9
|
+
"url": "https://github.com/joggrdocs/home"
|
|
10
|
+
},
|
|
11
|
+
"bin": {
|
|
12
|
+
"jog": "jog"
|
|
13
|
+
},
|
|
14
|
+
"files": [
|
|
15
|
+
"jog",
|
|
16
|
+
"ast-grep",
|
|
17
|
+
"README.md",
|
|
18
|
+
"LICENSE.md"
|
|
19
|
+
],
|
|
20
|
+
"os": [
|
|
21
|
+
"linux"
|
|
22
|
+
],
|
|
23
|
+
"cpu": [
|
|
24
|
+
"x64"
|
|
25
|
+
],
|
|
26
|
+
"publishConfig": {
|
|
27
|
+
"access": "public"
|
|
28
|
+
},
|
|
29
|
+
"engines": {
|
|
30
|
+
"node": ">=24.0.0"
|
|
31
|
+
}
|
|
32
|
+
}
|