Files
bot-whatsapp/packages/cli/package.json
Leifer 4e87ca790e ...
2022-10-29 12:15:54 +02:00

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"
}
}