poe2-bot/package.json
Boki 41d174195e Initial commit: POE2 automated trade bot
Monitors pathofexile.com/trade2 for new listings, travels to seller
hideouts, buys items from public stash tabs, and stores them.

Includes persistent C# OCR daemon for fast screen capture + Windows
native OCR, web dashboard for managing trade links and settings,
and full game automation via Win32 SendInput.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-10 14:03:47 -05:00

32 lines
804 B
JSON

{
"name": "poe2trade",
"version": "1.0.0",
"description": "POE2 trade bot - automated item purchasing via trade site monitoring",
"type": "module",
"main": "dist/index.js",
"scripts": {
"dev": "tsx src/index.ts",
"build": "tsc",
"build:daemon": "dotnet build tools/OcrDaemon -c Release",
"start": "node dist/index.js"
},
"dependencies": {
"chokidar": "^4.0.3",
"clipboard-sys": "^1.2.0",
"commander": "^13.1.0",
"dotenv": "^16.4.7",
"express": "^5.2.1",
"koffi": "^2.9.2",
"pino": "^9.6.0",
"pino-pretty": "^13.0.0",
"playwright": "^1.50.1",
"ws": "^8.19.0"
},
"devDependencies": {
"@types/express": "^5.0.6",
"@types/node": "^22.13.1",
"@types/ws": "^8.18.1",
"tsx": "^4.19.2",
"typescript": "^5.7.3"
}
}