-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.38 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.38 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
{
"name": "@vapi-ai/web",
"version": "2.5.2",
"description": "",
"main": "dist/vapi.js",
"types": "dist/vapi.d.ts",
"scripts": {
"test": "jest",
"build": "tsc && tsc --declaration",
"start": "npm run generate-api && npm run build && node dist/vapi.js",
"generate-api": "./generate-api.sh",
"update": "./update.sh",
"generate-local-build": "npm install && npm run build && npm pack",
"test:example": "npm run pack:local && cd example && npm install && npm run build",
"pack:local": "./scripts/build-latest.sh",
"clean-builds": "rm -f vapi-ai-web-*.tgz && echo '🧹 Cleaned up all build tarballs'",
"dev:example": "npm run pack:local && cd example && npm install && npm run dev",
"re-build-local-example": "./scripts/re-build-local-example.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/VapiAI/web.git"
},
"author": "vapi",
"license": "MIT",
"bugs": {
"url": "https://github.com/VapiAI/web/issues"
},
"homepage": "https://github.com/VapiAI/web#readme",
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@daily-co/daily-js": "^0.85.0",
"events": "^3.3.0"
},
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/node": "^24.0.4",
"jest": "^30.0.3",
"openai": "^5.7.0",
"swagger-typescript-api": "^13.2.7",
"ts-jest": "^29.4.0",
"ts-node": "^10.9.2"
}
}