-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 919 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
{
"name": "whatsbulk",
"version": "1.0.3",
"description": "Send messages in bulk to multiple users on WhatsApp using just a phone number!",
"main": "./dist/index.js",
"types": "./dist",
"scripts": {
"lint": "eslint . --ext .ts --fix",
"build": "del /q /s /f dist && npm run lint && tsc",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sohunn/WhatsBulk.git"
},
"keywords": [
"bulkmessage",
"whatsapp"
],
"author": "Sohan Shashikumar",
"license": "MIT",
"bugs": {
"url": "https://github.com/sohunn/WhatsBulk/issues"
},
"homepage": "https://github.com/sohunn/WhatsBulk#readme",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.53.0",
"@typescript-eslint/parser": "^5.53.0",
"eslint": "^8.35.0",
"typescript": "^4.9.5"
},
"dependencies": {
"puppeteer": "^19.7.2"
}
}