UNPKG

@akson/chatsuite-sdk

Version:

Production-ready TypeScript SDK for ChatSuite - WhatsApp automation with built-in session management, message queuing, webhook server, and database sync

92 lines (91 loc) 2.32 kB
{ "name": "@akson/chatsuite-sdk", "version": "2.0.0", "description": "Production-ready TypeScript SDK for ChatSuite - WhatsApp automation with built-in session management, message queuing, webhook server, and database sync", "main": "dist/index.js", "module": "dist/index.mjs", "types": "dist/index.d.ts", "files": [ "dist", "README.md", "CHANGELOG.md", "LICENSE", "examples" ], "scripts": { "build": "tsup", "dev": "tsup --watch", "test": "jest", "test:watch": "jest --watch", "lint": "eslint . --ext .ts,.tsx", "type-check": "tsc --noEmit", "prepublishOnly": "npm run build && npm run test && npm run type-check", "release:patch": "npm version patch && git push --follow-tags", "release:minor": "npm version minor && git push --follow-tags", "release:major": "npm version major && git push --follow-tags", "publish:test": "node publish-test.js", "publish:dry": "npm pack --dry-run" }, "keywords": [ "chatsuite", "messaging", "whatsapp", "api", "sdk", "typescript", "automation", "session-management", "message-queue", "webhook-server", "database-sync", "rate-limiting", "baileys", "chatbot", "mongodb", "production-ready" ], "author": "ChatSuite Team", "license": "MIT", "repository": { "type": "git", "url": "https://github.com/antoineschaller/chatsuite", "directory": "packages/sdk" }, "bugs": { "url": "https://github.com/antoineschaller/chatsuite/issues" }, "homepage": "https://github.com/antoineschaller/chatsuite/tree/main/packages/sdk#readme", "devDependencies": { "@types/jest": "^29.5.12", "@types/node": "^20.11.24", "@typescript-eslint/eslint-plugin": "^7.1.0", "@typescript-eslint/parser": "^7.1.0", "eslint": "^8.57.0", "jest": "^29.7.0", "ts-jest": "^29.1.2", "tsup": "^8.0.2", "typescript": "^5.3.3" }, "dependencies": { "axios": "^1.6.7", "form-data": "^4.0.0" }, "peerDependencies": { "mongodb": "^6.0.0", "express": "^4.18.0" }, "peerDependenciesMeta": { "mongodb": { "optional": true }, "express": { "optional": true } }, "engines": { "node": ">=16.0.0" }, "publishConfig": { "access": "public" } }