@mathew-cf/rag-cli-darwin-arm64 0.0.0-bootstrap.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/bin/.gitkeep +0 -0
- package/bin/rag +7 -0
- package/package.json +19 -0
package/bin/.gitkeep
ADDED
|
File without changes
|
package/bin/rag
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
#!/bin/sh
|
|
2
|
+
# Bootstrap-only placeholder — present so @mathew-cf/rag-cli-<plat>
|
|
3
|
+
# exists on npm and trusted publishing can be configured. Every real
|
|
4
|
+
# release replaces this with a prebuilt rag binary.
|
|
5
|
+
echo "rag-cli: bootstrap placeholder (platform @mathew-cf/rag-cli-$(uname -s | tr A-Z a-z)-$(uname -m))" >&2
|
|
6
|
+
echo "install @mathew-cf/rag-cli with a real release tag, e.g. @latest" >&2
|
|
7
|
+
exit 1
|
package/package.json
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@mathew-cf/rag-cli-darwin-arm64",
|
|
3
|
+
"version": "0.0.0-bootstrap.0",
|
|
4
|
+
"description": "Prebuilt rag-cli binary for macOS ARM64 (Apple Silicon)",
|
|
5
|
+
"license": "Apache-2.0",
|
|
6
|
+
"author": "mathew-cf",
|
|
7
|
+
"repository": {
|
|
8
|
+
"type": "git",
|
|
9
|
+
"url": "https://github.com/mathew-cf/rag-cli"
|
|
10
|
+
},
|
|
11
|
+
"os": ["darwin"],
|
|
12
|
+
"cpu": ["arm64"],
|
|
13
|
+
"files": [
|
|
14
|
+
"bin"
|
|
15
|
+
],
|
|
16
|
+
"engines": {
|
|
17
|
+
"node": ">=18"
|
|
18
|
+
}
|
|
19
|
+
}
|