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

44 lines
1.0 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"
},
"scripts": {
"dev": "tsx src/index.ts",
"build": "tsc -p tsconfig.json",
"start": "node dist/index.js",
"warelay": "node dist/index.js",
"warely": "node dist/index.js",
"lint": "echo \"No linter configured\"",
"test": "echo \"No tests yet\""
},
"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",
"twilio": "^5.10.6"
},
"devDependencies": {
"@types/body-parser": "^1.19.6",
"@types/express": "^5.0.5",
"@types/node": "^24.10.1",
"tsx": "^4.20.6",
"typescript": "^5.9.3"
}
}