-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 826 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 826 Bytes
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
{
"name": "basic-web-voice-assistant",
"version": "1.0.0",
"description": "A simple web-based voice assistant demonstrating Azure Voice Live SDK real-time features",
"type": "module",
"main": "src/main.ts",
"scripts": {
"build": "tsc && vite build",
"dev": "vite",
"dev-sdk": "vite --force",
"preview": "vite preview",
"serve": "python -m http.server 8080",
"type-check": "tsc --noEmit",
"reload": "curl -X POST http://localhost:3000/__vite_ping 2>/dev/null || echo 'Vite server not responding'"
},
"dependencies": {
"@azure/ai-voicelive": "^1.0.0-beta.1",
"@azure/core-auth": "^1.9.0"
},
"devDependencies": {
"@types/node": "^25.5.2",
"typescript": "^5.0.0",
"vite": "^5.0.0"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead"
]
}