@galelmalah/metasearch2-linux-arm64 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.
Files changed (2) hide show
  1. package/bin/metasearch +2 -0
  2. package/package.json +23 -0
package/bin/metasearch ADDED
@@ -0,0 +1,2 @@
1
+ #!/bin/sh
2
+ echo "placeholder — run CI for real binary" && exit 1
package/package.json ADDED
@@ -0,0 +1,23 @@
1
+ {
2
+ "name": "@galelmalah/metasearch2-linux-arm64",
3
+ "version": "0.1.0",
4
+ "description": "metasearch2 binary for Linux ARM64",
5
+ "os": [
6
+ "linux"
7
+ ],
8
+ "cpu": [
9
+ "arm64"
10
+ ],
11
+ "main": "bin/metasearch",
12
+ "files": [
13
+ "bin/metasearch"
14
+ ],
15
+ "license": "CC0-1.0",
16
+ "repository": {
17
+ "type": "git",
18
+ "url": "https://github.com/galElmalah/opencode-metasearch2"
19
+ },
20
+ "publishConfig": {
21
+ "access": "public"
22
+ }
23
+ }