@atchonk/ai-receptionist
Version:
AI-powered receptionist for handling phone calls, video calls, SMS, and emails
87 lines (86 loc) • 2.22 kB
JSON
{
"name": "@atchonk/ai-receptionist",
"version": "0.1.22",
"description": "AI-powered receptionist for handling phone calls, video calls, SMS, and emails",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"import": "./dist/index.mjs"
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts",
"dev": "tsup src/index.ts --format cjs,esm --dts --watch",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:ci": "jest --ci --coverage --maxWorkers=2",
"lint": "eslint src --ext .ts --config .eslintrc.json",
"typecheck": "tsc --noEmit -p tsconfig.json",
"format": "prettier --write \"src/**/*.ts\"",
"prepublishOnly": "npm run build",
"clean": "rm -rf node_modules dist"
},
"keywords": [
"ai-receptionist",
"phone-automation",
"video-call",
"sms-automation",
"email-automation",
"ai-agent",
"sales-automation",
"appointment-booking",
"crm"
],
"author": "Loctelli",
"license": "MIT",
"dependencies": {
"google-auth-library": "^9.6.0",
"googleapis": "^134.0.0",
"openai": "^4.104.0",
"postmark": "^4.0.5",
"twilio": "^5.0.0"
},
"optionalDependencies": {
"express": "^4.21.2",
"drizzle-orm": "^0.44.6",
"pg": "^8.11.0",
"@types/pg": "^8.10.0"
},
"peerDependenciesMeta": {
"express": {
"optional": true
}
},
"devDependencies": {
"@types/express": "^4.17.23",
"@types/jest": "^30.0.0",
"@types/node": "^20.10.0",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^8.46.1",
"@typescript-eslint/parser": "^8.46.1",
"dotenv": "^17.2.3",
"drizzle-orm": "^0.44.6",
"eslint": "^9.38.0",
"jest": "^29.7.0",
"prettier": "^3.6.2",
"ts-jest": "^29.4.5",
"ts-node": "^10.9.2",
"tsup": "^8.5.0",
"typescript": "^5.3.0"
},
"repository": {
"type": "git",
"url": "https://github.com/KennethAtchon/AI-receptionist"
},
"publishConfig": {
"access": "public"
}
}