-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.38 KB
/
package.json
File metadata and controls
60 lines (60 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "@kvendrik/voicecall",
"description": "📞 Have an AI agent make your calls for you",
"version": "0.1.0",
"author": "Koen Vendrik <koen@kvendrik.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/kvendrik/voicecall"
},
"homepage": "https://github.com/kvendrik/voicecall",
"bugs": {
"url": "https://github.com/kvendrik/voicecall/issues"
},
"publishConfig": {
"access": "public"
},
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
}
},
"bin": {
"voicecall": "./dist/index.js"
},
"files": [
"dist",
"LICENSE"
],
"scripts": {
"build": "bun run scripts/build.ts",
"publish": "bun publish",
"prepublishOnly": "bun run build",
"start": "bun run index.ts",
"doctor": "bun run index.ts doctor",
"call": "bun run index.ts call"
},
"dependencies": {
"@mariozechner/pi-ai": "^0.61.1",
"@mariozechner/pi-coding-agent": "^0.61.1",
"@ngrok/ngrok": "^1.4.0",
"commander": "^12.1.0",
"elevenlabs": "^1.50.0",
"twilio": "^5.4.0",
"ws": "^8.18.0"
},
"devDependencies": {
"@types/bun": "^1.3.11",
"@types/ws": "^8.5.13",
"typescript": "^5.6.0"
},
"engines": {
"bun": ">=1.0.0"
}
}