@irongraph/cli-linux-x64-gnu 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/LICENSE.txt +201 -0
- package/README.md +234 -0
- package/THIRD_PARTY_NOTICES.txt +88760 -0
- package/bin/irongraph +0 -0
- package/bin/irongraph-mcp +0 -0
- package/package.json +33 -0
package/bin/irongraph
ADDED
|
Binary file
|
|
Binary file
|
package/package.json
ADDED
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@irongraph/cli-linux-x64-gnu",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Native Linux AMD64 CLI for the embeddable IronGraph graph database and automatic local embeddings.",
|
|
5
|
+
"license": "Apache-2.0",
|
|
6
|
+
"repository": {
|
|
7
|
+
"type": "git",
|
|
8
|
+
"url": "git+https://github.com/agentbusiness/IronGraph.git",
|
|
9
|
+
"directory": "bindings/cli"
|
|
10
|
+
},
|
|
11
|
+
"os": [
|
|
12
|
+
"linux"
|
|
13
|
+
],
|
|
14
|
+
"cpu": [
|
|
15
|
+
"x64"
|
|
16
|
+
],
|
|
17
|
+
"libc": [
|
|
18
|
+
"glibc"
|
|
19
|
+
],
|
|
20
|
+
"engines": {
|
|
21
|
+
"node": ">=20.17"
|
|
22
|
+
},
|
|
23
|
+
"files": [
|
|
24
|
+
"bin/irongraph",
|
|
25
|
+
"bin/irongraph-mcp",
|
|
26
|
+
"README.md",
|
|
27
|
+
"LICENSE.txt",
|
|
28
|
+
"THIRD_PARTY_NOTICES.txt"
|
|
29
|
+
],
|
|
30
|
+
"publishConfig": {
|
|
31
|
+
"access": "public"
|
|
32
|
+
}
|
|
33
|
+
}
|