mirror of
https://github.com/cheveguerra/bot-whatsapp.git
synced 2026-04-18 03:29:15 +00:00
24 lines
664 B
JSON
24 lines
664 B
JSON
{
|
|
"name": "cli",
|
|
"version": "0.0.1",
|
|
"description": "",
|
|
"main": "index.js",
|
|
"private":true,
|
|
"scripts": {
|
|
"cli:dev": "NODE_ENV=dev node ./index.js",
|
|
"cli:rollup": "rollup index.js --config ./rollup-cli.config.js",
|
|
"format:check": "prettier --check .",
|
|
"format:write": "prettier --write .",
|
|
"lint:check": "eslint .",
|
|
"lint:fix": "eslint --fix .",
|
|
"build:cli": "npm run format:write && npm run lint:fix && npm run cli:rollup"
|
|
},
|
|
"keywords": [],
|
|
"author": "",
|
|
"license": "ISC",
|
|
"devDependencies": {},
|
|
"dependencies": {
|
|
"whatsapp-web.js": "^1.18.2"
|
|
}
|
|
}
|