@meridian-flow/mars-agents-linux-x64 0.0.1
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 +12 -0
- package/package.json +14 -0
package/README.md
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
# @meridian-flow/mars-agents-linux-x64
|
|
2
|
+
|
|
3
|
+
Platform binary package for `mars` on Linux `x64` with `glibc`.
|
|
4
|
+
|
|
5
|
+
This package is normally installed automatically as an optional dependency of `@meridian-flow/mars-agents`. Most users should install the top-level package instead:
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
npm install -g @meridian-flow/mars-agents
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
Project README:
|
|
12
|
+
<https://github.com/meridian-flow/mars-agents>
|
package/package.json
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@meridian-flow/mars-agents-linux-x64",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"description": "mars binary for Linux x64",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"repository": {
|
|
7
|
+
"type": "git",
|
|
8
|
+
"url": "git+https://github.com/meridian-flow/mars-agents.git"
|
|
9
|
+
},
|
|
10
|
+
"os": ["linux"],
|
|
11
|
+
"cpu": ["x64"],
|
|
12
|
+
"libc": ["glibc"],
|
|
13
|
+
"files": ["mars"]
|
|
14
|
+
}
|