@afffun/codexsess-linux-x64 0.0.13 → 0.0.15
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 +18 -0
- package/bin/codex-session-viewer +0 -0
- package/package.json +3 -2
package/README.md
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
# @afffun/codexsess-linux-x64
|
|
2
|
+
|
|
3
|
+
Prebuilt Linux x64 binary package for `@afffun/codexsess`.
|
|
4
|
+
|
|
5
|
+
Most users should install the root package instead:
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
npm install -g @afffun/codexsess
|
|
9
|
+
codexsess
|
|
10
|
+
```
|
|
11
|
+
|
|
12
|
+
Or run it once without a global install:
|
|
13
|
+
|
|
14
|
+
```bash
|
|
15
|
+
npx @afffun/codexsess
|
|
16
|
+
```
|
|
17
|
+
|
|
18
|
+
This platform package exists so the root package can pull the correct binary for the current OS and CPU during npm installation.
|
package/bin/codex-session-viewer
CHANGED
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@afffun/codexsess-linux-x64",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.15",
|
|
4
4
|
"description": "Linux x64 binary for @afffun/codexsess (publish this package with a musl-linked binary for broad glibc compatibility)",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"os": [
|
|
@@ -10,7 +10,8 @@
|
|
|
10
10
|
"x64"
|
|
11
11
|
],
|
|
12
12
|
"files": [
|
|
13
|
-
"bin"
|
|
13
|
+
"bin",
|
|
14
|
+
"README.md"
|
|
14
15
|
],
|
|
15
16
|
"publishConfig": {
|
|
16
17
|
"access": "public"
|