Files
Microsoft-Rewards-Script/package.json
TheNetsky 2c4d85f732 v3 init
Based of v3.0.0b10.
2025-12-11 16:16:32 +01:00

60 lines
2.0 KiB
JSON

{
"name": "microsoft-rewards-script",
"version": "3.0.0",
"description": "Automatically do tasks for Microsoft Rewards but in TS!",
"author": "Netsky",
"license": "GPL-3.0-or-later",
"main": "dist/index.js",
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"pre-build": "npm i && rimraf dist && npx patchright install chromium",
"build": "rimraf dist && tsc",
"start": "node ./dist/index.js",
"ts-start": "ts-node ./src/index.ts",
"dev": "ts-node ./src/index.ts -dev",
"kill-chrome-win": "powershell -Command \"Get-Process | Where-Object { $_.MainModule.FileVersionInfo.FileDescription -eq 'Google Chrome for Testing' } | ForEach-Object { Stop-Process -Id $_.Id -Force }\"",
"create-docker": "docker build -t microsoft-rewards-script-docker .",
"format": "prettier --write .",
"format:check": "prettier --check .",
"clear-sessions": "node ./scripts/clearSessions.js",
"clear-diagnostics": "rimraf diagnostics"
},
"keywords": [
"Bing Rewards",
"Microsoft Rewards",
"Bot",
"Script",
"TypeScript",
"Playwright",
"Cheerio"
],
"devDependencies": {
"@types/ms": "^2.1.0",
"@types/node": "^24.10.1",
"@typescript-eslint/eslint-plugin": "^8.48.0",
"eslint": "^9.39.1",
"eslint-plugin-modules-newline": "^0.0.6",
"prettier": "^3.7.1",
"rimraf": "^6.1.2",
"typescript": "^5.9.3"
},
"dependencies": {
"axios": "^1.13.2",
"axios-retry": "^4.5.0",
"chalk": "^4.1.2",
"cheerio": "^1.0.0",
"fingerprint-generator": "^2.1.77",
"fingerprint-injector": "^2.1.77",
"ghost-cursor-playwright-port": "^1.4.3",
"http-proxy-agent": "^7.0.2",
"https-proxy-agent": "^7.0.6",
"ms": "^2.1.3",
"otpauth": "^9.4.1",
"p-queue": "^9.0.1",
"patchright": "^1.57.0",
"ts-node": "^10.9.2"
}
}