-
Notifications
You must be signed in to change notification settings - Fork 63
/
Copy pathpackage.json
37 lines (37 loc) · 976 Bytes
/
package.json
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": "@vapi-ai/web",
"version": "2.2.0",
"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": "npx swagger-typescript-api -p https://api.vapi.ai/api-json -o . -n api.ts",
"update": "./update.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",
"dependencies": {
"@daily-co/daily-js": "^0.72.1",
"events": "^3.3.0"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^20.6.0",
"jest": "^29.7.0",
"openai": "^4.24.1",
"swagger-typescript-api": "^13.0.3",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2"
}
}