@holdyourvoice/hyv 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.
Files changed (2) hide show
  1. package/index.js +4 -0
  2. package/package.json +24 -0
package/index.js ADDED
@@ -0,0 +1,4 @@
1
+ #!/usr/bin/env node
2
+
3
+ console.log("Hold Your Voice is coming soon. Visit https://holdyourvoice.com");
4
+ process.exit(0);
package/package.json ADDED
@@ -0,0 +1,24 @@
1
+ {
2
+ "name": "@holdyourvoice/hyv",
3
+ "version": "0.0.1",
4
+ "description": "Hold Your Voice — CLI-first voice gate layer for AI workflows",
5
+ "main": "index.js",
6
+ "bin": {
7
+ "hyv": "index.js"
8
+ },
9
+ "keywords": [
10
+ "voice",
11
+ "writing",
12
+ "ai",
13
+ "cli",
14
+ "brand-voice",
15
+ "content-gate"
16
+ ],
17
+ "author": "Hold Your Voice",
18
+ "license": "UNLICENSED",
19
+ "private": false,
20
+ "repository": {
21
+ "type": "git",
22
+ "url": "https://github.com/holdyourvoice/hyv.git"
23
+ }
24
+ }