-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
36 lines (36 loc) · 970 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
{
"name": "whatsapp-bot",
"version": "2.0.0",
"description": "A simple and easy-to-use WhatsApp bot project, written in JavaScript",
"main": "index.js",
"scripts": {
"lint": "eslint . --ignore-path .gitignore",
"lint:fix": "eslint . --ignore-path .gitignore --fix",
"start": "node ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/rzlamrr/dvstBot.git"
},
"author": "Zhycorp",
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/rzlamrr/dvstBot/issues"
},
"homepage": "https://github.com/rzlamrr/dvstBot#readme",
"eslintConfig": {
"extends": "@zhycorp/eslint-config/node"
},
"dependencies": {
"@open-wa/wa-automate": "^4.58.0",
"@open-wa/wa-decrypt": "^4.4.0",
"child_process": "^1.0.2",
"fs": "^0.0.1-security",
"mathjs": "^11.6.0",
"moment-timezone": "^0.5.41"
},
"devDependencies": {
"@zhycorp/eslint-config": "^7.1.1",
"eslint": "^8.36.0"
}
}