@holdyourvoice/hyv 0.7.8 → 2.0.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.
Files changed (2) hide show
  1. package/dist/index.js +6484 -315
  2. package/package.json +5 -7
package/package.json CHANGED
@@ -1,16 +1,15 @@
1
1
  {
2
2
  "name": "@holdyourvoice/hyv",
3
- "version": "0.7.8",
4
- "description": "Hold Your Voice — voice gate layer for AI workflows",
3
+ "version": "2.0.0",
4
+ "description": "Hold Your Voice — CLI-first voice gate layer for AI workflows. make your ai agent sound exactly like you!",
5
5
  "main": "dist/index.js",
6
6
  "bin": {
7
- "hyvoice": "dist/index.js",
8
7
  "hyv": "dist/index.js"
9
8
  },
10
9
  "scripts": {
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')\""
10
+ "build": "esbuild src/index.ts --bundle --platform=node --target=node18 --outfile=dist/index.js --format=cjs --banner:js='#!/usr/bin/env node'",
11
+ "dev": "npm run build && node dist/index.js",
12
+ "prepublishOnly": "npm run build"
14
13
  },
15
14
  "keywords": [
16
15
  "voice",
@@ -27,7 +26,6 @@
27
26
  "dependencies": {
28
27
  "chalk": "^4.1.2",
29
28
  "commander": "^12.1.0",
30
- "glob": "^11.0.0",
31
29
  "open": "^8.4.2"
32
30
  },
33
31
  "devDependencies": {