understanding commited on
Commit
e2ba24a
·
verified ·
1 Parent(s): 39635a2

Create package.json

Browse files
Files changed (1) hide show
  1. package.json +14 -0
package.json ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "name": "whatsapp-bot",
3
+ "version": "1.0.0",
4
+ "type": "module",
5
+ "description": "WhatsApp Bot using Baileys",
6
+ "main": "index.js",
7
+ "scripts": {
8
+ "start": "node index.js"
9
+ },
10
+ "dependencies": {
11
+ "baileys": "github:WhiskeySockets/Baileys",
12
+ "@hapi/boom": "10.0.1"
13
+ }
14
+ }