Files
clawdbot/package.json
2025-11-24 17:23:59 +01:00

55 lines
1.4 KiB
JSON

{
"name": "warelay",
"version": "1.0.0",
"description": "WhatsApp relay CLI (send, monitor, webhook, auto-reply) using Twilio",
"type": "module",
"main": "dist/index.js",
"bin": {
"warelay": "dist/index.js",
"warely": "dist/index.js",
"wa": "dist/index.js"
},
"scripts": {
"dev": "tsx src/index.ts",
"build": "tsc -p tsconfig.json",
"start": "tsx src/index.ts",
"warelay": "tsx src/index.ts",
"warely": "tsx src/index.ts",
"wa": "tsx src/index.ts",
"lint": "biome check src",
"lint:fix": "biome check --write src",
"format": "biome format src",
"format:fix": "biome format src --write",
"test": "vitest"
},
"keywords": [],
"author": "",
"license": "MIT",
"engines": {
"node": ">=22.0.0"
},
"packageManager": "pnpm@10.23.0",
"dependencies": {
"body-parser": "^2.2.0",
"chalk": "^5.6.2",
"commander": "^14.0.2",
"dotenv": "^17.2.3",
"express": "^5.1.0",
"json5": "^2.2.3",
"qrcode-terminal": "^0.12.0",
"twilio": "^5.10.6",
"@whiskeysockets/baileys": "^6.7.7",
"pino": "^9.4.0"
},
"devDependencies": {
"@biomejs/biome": "^2.3.7",
"@types/body-parser": "^1.19.6",
"@types/qrcode-terminal": "^0.12.2",
"@types/express": "^5.0.5",
"@types/node": "^24.10.1",
"tsx": "^4.20.6",
"typescript": "^5.9.3",
"vitest": "^2.1.4"
}
}