-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
145 lines (145 loc) · 5.27 KB
/
Copy pathpackage.json
File metadata and controls
145 lines (145 loc) · 5.27 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
{
"name": "hermes-live-voice",
"version": "1.1.0",
"description": "Continuous realtime voice for Hermes Agent. Talk while Hermes runs background tasks.",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./browser": {
"types": "./clients/browser/hermes-live-client.d.ts",
"import": "./clients/browser/hermes-live-client.js"
},
"./browser/mic-worklet.js": "./clients/browser/mic-worklet.js",
"./package.json": "./package.json"
},
"license": "MIT",
"author": {
"name": "Biel Carpi",
"url": "https://github.com/bielcarpi"
},
"homepage": "https://github.com/bielcarpi/hermes-live-voice#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/bielcarpi/hermes-live-voice.git"
},
"bugs": {
"url": "https://github.com/bielcarpi/hermes-live-voice/issues"
},
"publishConfig": {
"access": "public",
"provenance": true
},
"keywords": [
"hermes-agent",
"continuous-voice",
"full-duplex",
"realtime",
"voice",
"speech-to-speech",
"background-tasks",
"task-supervision",
"realtime-audio",
"realtime-voice",
"voice-gateway",
"openai-realtime",
"gemini-live",
"hermes-plugin",
"hermes-dashboard",
"dashboard-plugin",
"huggingface",
"local-ai",
"local-voice",
"voice-agent",
"browser-sdk",
"self-hosted",
"voice-assistant",
"websocket"
],
"engines": {
"node": ">=20"
},
"bin": {
"hermes-live": "dist/cli.js"
},
"files": [
"dist",
"clients/browser/hermes-live-client.js",
"clients/browser/hermes-live-client.d.ts",
"clients/browser/mic-worklet.js",
"assets/architecture.svg",
"assets/banner.svg",
"assets/huggingface-realtime-entry.py",
"assets/live-voice-dashboard.jpg",
"docs/architecture.md",
"docs/background-tasks.md",
"docs/client-protocol.md",
"docs/live-provider-testing.md",
"docs/provider-compatibility-receipt-template.md",
"docs/security.md",
"docs/setup.md",
"docs/ui-integration.md",
"examples/docker-compose.yml",
"examples/nginx.conf",
"plugins/hermes-live",
"!plugins/hermes-live/__pycache__",
"!plugins/hermes-live/**/*.pyc",
"LICENSE",
"README.md",
"CHANGELOG.md",
".env.example"
],
"scripts": {
"clean": "node -e \"require('node:fs').rmSync('dist',{recursive:true,force:true})\"",
"build": "npm run clean && tsc -p tsconfig.build.json",
"dev": "tsx src/cli.ts dev",
"start": "node dist/cli.js serve",
"check": "tsx src/cli.ts check",
"check:cli-check": "node scripts/cli-check-smoke.mjs",
"check:cli-client": "node scripts/cli-client-smoke.mjs",
"check:dashboard-assets": "node scripts/sync-dashboard-assets.mjs --check",
"check:dashboard-plugin": "node --check plugins/hermes-live/dashboard/dist/index.js && python3 scripts/dashboard-plugin-smoke.py",
"check:gateway": "node scripts/gateway-smoke.mjs",
"check:gateway:local": "npm run build && node scripts/gateway-smoke.mjs --live-provider local",
"check:hermes-compatibility": "node scripts/hermes-compatibility-smoke.mjs",
"check:docs": "node scripts/docs-check.mjs",
"check:plugin-index-entry": "node scripts/plugin-index-entry.mjs --check",
"check:live-provider": "npm run build && node dist/cli.js provider-smoke",
"check:live-provider-cli": "node scripts/live-provider-cli-smoke.mjs",
"check:local-runtime": "python3 scripts/local-runtime-contract-smoke.py",
"check:package": "node scripts/package-smoke.mjs",
"check:plugin": "python3 scripts/plugin-smoke.py",
"check:plugin-local": "python3 plugins/hermes-live/tests/test_manifest_contract.py",
"check:positioning": "node scripts/positioning-smoke.mjs",
"check:release-notes": "node scripts/release-notes-smoke.mjs",
"check:scripts": "node scripts/script-syntax-smoke.mjs",
"check:workflow-pins": "node scripts/workflow-pins-smoke.mjs",
"check:browser-client": "node --check clients/browser/hermes-live-client.js && node --check clients/browser/mic-worklet.js",
"print-config": "tsx src/cli.ts print-config",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc -p tsconfig.json --noEmit",
"sync:dashboard-assets": "node scripts/sync-dashboard-assets.mjs",
"verify": "npm run typecheck && npm run check:scripts && npm run check:docs && npm run check:release-notes && npm run check:workflow-pins && npm run check:positioning && npm run check:browser-client && npm run check:dashboard-assets && npm run check:dashboard-plugin && npm run check:plugin && npm run check:plugin-local && npm run check:plugin-index-entry && npm run check:local-runtime && npm test && npm run build && npm run check:live-provider-cli && npm run check:cli-check && npm run check:cli-client && npm run check:gateway && npm run check:package",
"prepack": "npm run check:dashboard-assets && npm run build"
},
"dependencies": {
"@google/genai": "2.19.0",
"ws": "8.21.3",
"zod": "^3.25.76"
},
"devDependencies": {
"@types/node": "^20.19.0",
"@types/ws": "^8.18.1",
"tsx": "^4.23.11",
"typescript": "^7.0.2",
"vitest": "^4.1.11"
},
"overrides": {
"esbuild": "^0.28.1"
}
}