-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 987 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 987 Bytes
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
{
"name": "whatsapp-spammer-cli",
"version": "1.1.5",
"description": "A CLI tool to send automated WhatsApp messages",
"main": "build/index.js",
"bin": {
"whatsapp-spammer": "./build/index.js"
},
"scripts": {
"dev": "ts-node ./src/index.ts",
"build": "tsc ./src/index.ts --outDir ./build --target ES2020 --module commonjs",
"start": "node ./build/index.js",
"prepublishOnly": "npm run build"
},
"keywords": [
"whatsapp",
"cli",
"automation",
"puppeteer",
"spam",
"spammer"
],
"author": "Nick-Lemy <nicklemykayiranga@gmail.com>",
"license": "MIT",
"type": "commonjs",
"devDependencies": {
"@types/node": "^24.10.1",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
},
"dependencies": {
"child_process": "^1.0.2",
"puppeteer-core": "^24.30.0"
},
"engines": {
"node": ">=18.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/Nick-Lemy/whatsapp_spammer.git"
}
}