etalon-cli 0.9.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/etalon.js ADDED
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env node
2
+ require('../install.js');
3
+ process.exit(1);
package/install.js ADDED
@@ -0,0 +1,10 @@
1
+ const RED = '\x1b[31m';
2
+ const CYAN = '\x1b[36m';
3
+ const RESET = '\x1b[0m';
4
+
5
+ console.log(`${RED}ERROR: The ETALON CLI is now a native Rust application and is no longer distributed via npm.${RESET}\n`);
6
+ console.log('To install the new CLI, please use cargo:');
7
+ console.log(`${CYAN} cargo install etalon-cli${RESET}\n`);
8
+ console.log('Or use the pre-built Docker image:');
9
+ console.log(`${CYAN} docker run -it ghcr.io/nma-vc/etalon${RESET}\n`);
10
+ console.log(`For more installation options and the GitHub repository, visit:\n${CYAN} https://github.com/NMA-vc/etalon${RESET}\n`);
package/package.json ADDED
@@ -0,0 +1,29 @@
1
+ {
2
+ "name": "etalon-cli",
3
+ "version": "0.9.0",
4
+ "description": "Privacy engineering CLI for AI agents and developers. Audits websites, traces data flows, generates GDPR Trust Centers.",
5
+ "scripts": {
6
+ "postinstall": "node install.js"
7
+ },
8
+ "bin": {
9
+ "etalon": "./bin/etalon.js",
10
+ "etalon-cli": "./bin/etalon.js"
11
+ },
12
+ "repository": {
13
+ "type": "git",
14
+ "url": "https://github.com/NMA-vc/etalon"
15
+ },
16
+ "keywords": [
17
+ "privacy",
18
+ "gdpr",
19
+ "compliance",
20
+ "cli",
21
+ "audit",
22
+ "scanner"
23
+ ],
24
+ "author": "NMA Venture Capital",
25
+ "license": "MIT",
26
+ "publishConfig": {
27
+ "access": "public"
28
+ }
29
+ }