memnox 0.1.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/LICENSE +201 -0
- package/README.md +56 -0
- package/dist/bin/egress.js +4 -0
- package/dist/bin/git-credential.js +4 -0
- package/dist/bin/intercept.js +4 -0
- package/dist/bin/mcp-proxy.js +4 -0
- package/dist/bin/shell.js +4 -0
- package/dist/index.js +6495 -0
- package/package.json +55 -0
package/package.json
ADDED
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "memnox",
|
|
3
|
+
"version": "0.1.1",
|
|
4
|
+
"description": "Memnox CLI — run the trust runtime, manage policies, inspect the audit trail.",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"ai-agents",
|
|
7
|
+
"governance",
|
|
8
|
+
"cli",
|
|
9
|
+
"policy",
|
|
10
|
+
"audit"
|
|
11
|
+
],
|
|
12
|
+
"license": "Apache-2.0",
|
|
13
|
+
"author": "Memnox",
|
|
14
|
+
"homepage": "https://github.com/Memnox/memnox/tree/main/packages/cli#readme",
|
|
15
|
+
"repository": {
|
|
16
|
+
"type": "git",
|
|
17
|
+
"url": "git+https://github.com/Memnox/memnox.git",
|
|
18
|
+
"directory": "packages/cli"
|
|
19
|
+
},
|
|
20
|
+
"bugs": {
|
|
21
|
+
"url": "https://github.com/Memnox/memnox/issues"
|
|
22
|
+
},
|
|
23
|
+
"publishConfig": {
|
|
24
|
+
"access": "public",
|
|
25
|
+
"provenance": true
|
|
26
|
+
},
|
|
27
|
+
"type": "module",
|
|
28
|
+
"bin": {
|
|
29
|
+
"memnox": "dist/index.js",
|
|
30
|
+
"memnox-mcp-proxy": "dist/bin/mcp-proxy.js",
|
|
31
|
+
"memnox-shell": "dist/bin/shell.js",
|
|
32
|
+
"memnox-intercept": "dist/bin/intercept.js",
|
|
33
|
+
"memnox-git-credential": "dist/bin/git-credential.js",
|
|
34
|
+
"memnox-egress": "dist/bin/egress.js"
|
|
35
|
+
},
|
|
36
|
+
"engines": {
|
|
37
|
+
"node": ">=22"
|
|
38
|
+
},
|
|
39
|
+
"files": [
|
|
40
|
+
"dist",
|
|
41
|
+
"README.md",
|
|
42
|
+
"LICENSE"
|
|
43
|
+
],
|
|
44
|
+
"dependencies": {
|
|
45
|
+
"commander": "^12.1.0",
|
|
46
|
+
"yaml": "^2.4.0",
|
|
47
|
+
"smol-toml": "^1.4.2",
|
|
48
|
+
"@memnox/proxy": "0.1.1",
|
|
49
|
+
"@memnox/core": "0.1.1",
|
|
50
|
+
"@memnox/interceptors": "0.1.1"
|
|
51
|
+
},
|
|
52
|
+
"scripts": {
|
|
53
|
+
"build": "tsup"
|
|
54
|
+
}
|
|
55
|
+
}
|