@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/assets/ai-eliminator-rules.md +130 -0
- package/assets/ai-eliminator-skill.md +63 -0
- package/assets/chatgpt-instructions 2.txt +8 -0
- package/assets/chatgpt-instructions 3.txt +8 -0
- package/assets/chatgpt-instructions.txt +8 -0
- package/assets/claude-code-skill 2.md +24 -0
- package/assets/claude-code-skill.md +24 -0
- package/assets/cursor-rules 2.md +12 -0
- package/assets/cursor-rules 3.md +12 -0
- package/assets/cursor-rules.md +12 -0
- package/assets/economic-drift-voice.md +42 -0
- package/assets/hold-your-voice-skill.md +174 -0
- package/assets/voice-matcher-skill.md +57 -0
- package/assets/voice-profile-schema.json +28 -0
- package/dist/index.js +6484 -315
- package/package.json +8 -8
- package/scripts/hold_voice.py +2013 -0
- package/scripts/hold_voice_sync.py +194 -0
package/package.json
CHANGED
|
@@ -1,16 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@holdyourvoice/hyv",
|
|
3
|
-
"version": "2.0
|
|
4
|
-
"description": "Hold Your Voice
|
|
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=
|
|
12
|
-
"dev": "
|
|
13
|
-
"
|
|
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
|
}
|