@holdyourvoice/hyv 2.0.1 → 2.1.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/package.json CHANGED
@@ -1,16 +1,15 @@
1
1
  {
2
2
  "name": "@holdyourvoice/hyv",
3
- "version": "2.0.1",
4
- "description": "Hold Your Voice voice gate layer for AI workflows",
3
+ "version": "2.1.0",
4
+ "description": "Hold Your Voice \u2014 voice gate layer for AI workflows. make your ai agent sound exactly like you! includes 220+ AI pattern detection engine.",
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": {
@@ -39,6 +37,8 @@
39
37
  "node": ">=18"
40
38
  },
41
39
  "files": [
42
- "dist"
40
+ "dist",
41
+ "scripts/",
42
+ "assets/"
43
43
  ]
44
44
  }