-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
37 lines (37 loc) · 917 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-web",
"version": "1.0.3",
"description": "Even easier for devs to integrate Vapi API (Voice AI) into their applications",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc && babel src --out-dir lib --extensions \".ts,.tsx\""
},
"keywords": [],
"author": "Cameron King",
"license": "ISC",
"dependencies": {
"@vapi-ai/web": "^1.1.5",
"react": "^18.3.1"
},
"devDependencies": {
"@babel/cli": "^7.15.7",
"@babel/preset-env": "^7.15.6",
"@babel/preset-react": "^7.14.5",
"@babel/preset-typescript": "^7.15.0",
"@types/node": "^20.12.12",
"@types/react": "^18.3.2",
"typescript": "^5.4.5"
},
"babel": {
"presets": [
"@babel/preset-env",
"@babel/preset-react",
"@babel/preset-typescript"
]
},
"files": [
"lib"
]
}