-
Notifications
You must be signed in to change notification settings - Fork 92
/
package.json
43 lines (43 loc) · 1.11 KB
/
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
38
39
40
41
42
43
{
"name": "@adiwajshing/whatsapp-info-bot",
"version": "2.0.0",
"description": "A framework to make bots",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"prepare": "tsc",
"test:chat": "ts-node src/example/intents --chat",
"example": "ts-node src/example/index.ts",
"build": "tsc"
},
"files": [
"dist/*"
],
"keywords": [],
"repository": {
"url": "git@github.com:adiwajshing/WhatsAppInfoBot.git"
},
"author": "Adhiraj Singh",
"license": "ISC",
"dependencies": {
"got": "^11.8.1",
"he": "^1.2.0",
"mustache": "^4.1.0",
"natural": "^2.1.5"
},
"peerDependencies": {
"@adiwajshing/baileys": "^3.4.0",
"@chatdaddy/client": "git+https://github.com/chatdaddy/typescript-client"
},
"devDependencies": {
"@adiwajshing/baileys": "^3.4.0",
"@chatdaddy/client": "git+https://github.com/chatdaddy/typescript-client",
"@types/aws-lambda": "^8.10.82",
"@types/he": "^1.1.1",
"@types/mustache": "^4.1.1",
"@types/natural": "^2.1.1",
"@types/node": "^14.14.31",
"ts-node": "^9.1.1",
"typescript": "^4.1.5"
}
}