@holdyourvoice/hyv 2.0.0 → 2.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/dist/index.js +315 -6484
- package/package.json +7 -5
package/package.json
CHANGED
|
@@ -1,15 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@holdyourvoice/hyv",
|
|
3
|
-
"version": "2.0.
|
|
4
|
-
"description": "Hold Your Voice —
|
|
3
|
+
"version": "2.0.1",
|
|
4
|
+
"description": "Hold Your Voice — voice gate layer for AI workflows",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"bin": {
|
|
7
|
+
"hyvoice": "dist/index.js",
|
|
7
8
|
"hyv": "dist/index.js"
|
|
8
9
|
},
|
|
9
10
|
"scripts": {
|
|
10
|
-
"build": "esbuild src/index.ts --bundle --platform=node --target=
|
|
11
|
-
"dev": "
|
|
12
|
-
"
|
|
11
|
+
"build": "esbuild src/index.ts --bundle --platform=node --target=node20 --format=cjs --outfile=dist/index.js --banner:js='#!/usr/bin/env node' --minify --legal-comments=none",
|
|
12
|
+
"dev": "esbuild src/index.ts --bundle --platform=node --target=node20 --format=cjs --outfile=dist/index.js --banner:js='#!/usr/bin/env node' --watch",
|
|
13
|
+
"postinstall": "node -e \"console.log('\\n make your ai agent sound exactly like you!\\n\\n to get started:\\n hyv init → sign in\\n hyv new my-voice → create your voice profile\\n\\n first month is just \\$1.\\n')\""
|
|
13
14
|
},
|
|
14
15
|
"keywords": [
|
|
15
16
|
"voice",
|
|
@@ -26,6 +27,7 @@
|
|
|
26
27
|
"dependencies": {
|
|
27
28
|
"chalk": "^4.1.2",
|
|
28
29
|
"commander": "^12.1.0",
|
|
30
|
+
"glob": "^11.0.0",
|
|
29
31
|
"open": "^8.4.2"
|
|
30
32
|
},
|
|
31
33
|
"devDependencies": {
|