service-teams-browser-bot/package.json
ValueOn AG 043349f529 Initial commit: Browser-based Teams Meeting Bot
Co-authored-by: Cursor <cursoragent@cursor.com>
2026-02-13 22:44:57 +01:00

35 lines
862 B
JSON

{
"name": "service-teams-browser-bot",
"version": "1.0.0",
"description": "Browser-based Teams Meeting Bot using Playwright",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "ts-node src/index.ts",
"lint": "eslint src/**/*.ts",
"test": "jest"
},
"dependencies": {
"playwright": "^1.41.0",
"ws": "^8.16.0",
"uuid": "^9.0.1",
"dotenv": "^16.4.1",
"express": "^4.18.2",
"winston": "^3.11.0"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/node": "^20.11.0",
"@types/uuid": "^9.0.7",
"@types/ws": "^8.5.10",
"typescript": "^5.3.3",
"ts-node": "^10.9.2",
"@typescript-eslint/eslint-plugin": "^6.19.0",
"@typescript-eslint/parser": "^6.19.0",
"eslint": "^8.56.0"
},
"engines": {
"node": ">=18.0.0"
}
}