-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 990 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 990 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
31
32
33
34
35
36
37
{
"name": "buzzwald-client",
"private": true,
"version": "0.0.1",
"type": "module",
"description": "Buzzwald phone widget - embeddable voice call widget",
"main": "dist/buzzwald-widget.js",
"files": [
"dist/"
],
"scripts": {
"dev": "vite",
"build": "bun run build:clean && bun run build:widget && bun run build:loader",
"build:clean": "rm -rf dist",
"build:widget": "vite build",
"build:loader": "BUILD_TARGET=loader vite build",
"preview": "vite preview",
"test": "echo 'Widget test page available at test/test.html'",
"test:cache-busting": "vite --open test/test-cache-busting.html",
"build:release": "bun run build && echo 'Build complete! Remember to create a GitHub release to deploy.'"
},
"keywords": [
"widget",
"phone",
"voice",
"vapi",
"ai",
"embeddable"
],
"author": "Structured Labs",
"devDependencies": {
"vite": "^7.0.3"
},
"dependencies": {
"@vapi-ai/web": "^2.3.8"
}
}