mirror of
https://github.com/cheveguerra/bot-whatsapp.git
synced 2026-04-18 11:39:15 +00:00
95 lines
3.4 KiB
JSON
95 lines
3.4 KiB
JSON
{
|
|
"name": "@bot-whatsapp/root",
|
|
"version": "0.2.0-alpha.0",
|
|
"description": "Bot de wahtsapp open source para MVP o pequeños negocios",
|
|
"main": "app.js",
|
|
"private": true,
|
|
"scripts": {
|
|
"commit": "git-cz",
|
|
"cli:rollup": "rollup --config ./packages/cli/rollup-cli.config.js ",
|
|
"create-bot:rollup": "rollup --config ./packages/create-bot-whatsapp/rollup-create.config.js ",
|
|
"bot:rollup": "rollup --config ./packages/bot/rollup-bot.config.js",
|
|
"provider:rollup": "rollup --config ./packages/provider/rollup-provider.config.js ",
|
|
"database:rollup": "rollup --config ./packages/database/rollup-database.config.js",
|
|
"format:check": "prettier --check ./packages",
|
|
"format:write": "prettier --write ./packages",
|
|
"fmt.staged": "pretty-quick --staged",
|
|
"lint:check": "eslint ./packages",
|
|
"lint:fix": "eslint --fix ./packages",
|
|
"build": "yarn run cli:rollup && yarn run bot:rollup && yarn run provider:rollup && yarn run database:rollup",
|
|
"copy.lib": "node ./scripts/move.js",
|
|
"test.unit": "node ./node_modules/uvu/bin.js packages test",
|
|
"test.coverage": "node ./node_modules/c8/bin/c8.js npm run test.unit",
|
|
"test": "npm run test.coverage",
|
|
"cli": "node ./packages/cli/bin/cli.js",
|
|
"create": "node ./packages/create-bot-whatsapp/bin/create.js",
|
|
"dev:debug": "node --inspect ./example-app/app.js",
|
|
"dev": "node ./example-app/app.js",
|
|
"prepare": "npx husky install",
|
|
"preinstall": "npx only-allow yarn",
|
|
"postinstall": "npx prettier --write .",
|
|
"release": "standard-version"
|
|
},
|
|
"workspaces": [
|
|
"packages/create-bot-whatsapp",
|
|
"packages/bot",
|
|
"packages/cli",
|
|
"packages/database",
|
|
"packages/provider",
|
|
"packages/docs"
|
|
],
|
|
"keywords": [
|
|
"whatsapp",
|
|
"bot-whatsapp",
|
|
"node-bot-whatsapp"
|
|
],
|
|
"contributors": [
|
|
{
|
|
"email": "leifer33@gmail.com",
|
|
"name": "Leifer Mendez",
|
|
"url": "https://leifermendez.github.io"
|
|
},
|
|
{
|
|
"name": "aurik3",
|
|
"email": "aurik3@aurik3.com",
|
|
"url": "https://github.com/aurik3"
|
|
}
|
|
],
|
|
"repository": "https://github.com/leifermendez/bot-whatsapp",
|
|
"license": "ISC",
|
|
"devDependencies": {
|
|
"@commitlint/cli": "^17.3.0",
|
|
"@commitlint/config-conventional": "^17.3.0",
|
|
"@rollup/plugin-commonjs": "^23.0.2",
|
|
"@rollup/plugin-json": "^5.0.1",
|
|
"@rollup/plugin-node-resolve": "^15.0.1",
|
|
"@rollup/plugin-replace": "^5.0.1",
|
|
"c8": "^7.12.0",
|
|
"conventional-changelog": "^3.1.25",
|
|
"cross-env": "^7.0.3",
|
|
"eslint": "^8.26.0",
|
|
"eslint-config-prettier": "^8.5.0",
|
|
"fs-extra": "^11.1.0",
|
|
"git-cz": "^4.9.0",
|
|
"husky": "^8.0.2",
|
|
"only-allow": "^1.1.1",
|
|
"prettier": "^2.8.0",
|
|
"pretty-quick": "^3.1.3",
|
|
"prompts": "^2.4.2",
|
|
"rimraf": "^3.0.2",
|
|
"rollup": "^3.2.3",
|
|
"rollup-plugin-cleanup": "^3.2.1",
|
|
"rollup-plugin-copy": "^3.4.0",
|
|
"semver": "^7.3.8",
|
|
"standard-version": "^9.5.0",
|
|
"uvu": "^0.5.6"
|
|
},
|
|
"packageManager": "yarn@3.3.0",
|
|
"engines": {
|
|
"node": ">=16",
|
|
"npm": "please-use-yarn",
|
|
"yarn": ">=3"
|
|
},
|
|
"author": "Leifer Mendez <leifer33@gmail.com>"
|
|
}
|