-
-
Notifications
You must be signed in to change notification settings - Fork 41
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 4.7 KB
/
Copy pathpackage.json
File metadata and controls
92 lines (92 loc) · 4.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "microsoft-rewards-bot",
"version": "4.6.6",
"description": "Source-available Microsoft Rewards automation with multi-account support, Docker deployment, plugin extensions, Discord webhooks, and optional proprietary Core features.",
"author": "QuestPilot",
"license": "SEE LICENSE IN LICENSE",
"repository": {
"type": "git",
"url": "https://github.com/QuestPilot/Microsoft-Rewards-Bot.git"
},
"homepage": "https://github.com/QuestPilot/Microsoft-Rewards-Bot#readme",
"bugs": {
"url": "https://github.com/QuestPilot/Microsoft-Rewards-Bot/issues"
},
"private": true,
"engines": {
"node": "24.15.0"
},
"scripts": {
"browser:install": "node ./scripts/build/ensure-patchright-browser.js",
"build": "rimraf dist && tsc && node -e \"const fs=require('fs'),p=require('path'),s='src',d='dist';[['config.json','config.json'],['accounts.json','accounts.json'],['config.example.json','config.example.json'],['accounts.example.json','accounts.example.json'],['crontab.template','crontab.template']].forEach(([from,to])=>{const src=p.join(s,from),dst=p.join(d,to);if(fs.existsSync(src))fs.copyFileSync(src,dst)});[['core/bing-search-activity-queries.json'],['core/search-queries.json']].forEach(([f])=>{const src=p.join(s,f),dst=p.join(d,f);if(fs.existsSync(src)){fs.mkdirSync(p.dirname(dst),{recursive:true});fs.copyFileSync(src,dst)}})\" && node ./scripts/build/sync-dist-package.js",
"node:check": "node ./scripts/build/check-node-version.js",
"prestart": "node ./scripts/build/check-node-version.js",
"start": "node ./scripts/start.js",
"prets-start": "node ./scripts/build/check-node-version.js",
"update:doctor": "node ./scripts/updater/update-doctor.js",
"update:check": "node ./scripts/updater/update-check.js --dry-run",
"update:repair": "node ./scripts/updater/update-check.js --force",
"core:sign": "node ./scripts/signing/sign-core-manifest.js",
"core:release-check": "node ./scripts/signing/check-core-release-artifact.js",
"marketplace:sign": "node ./scripts/signing/sign-marketplace-catalog.js",
"marketplace:list": "node ./scripts/plugins/marketplace-list.js",
"ts-start": "ts-node ./src/index.ts",
"predev": "node ./scripts/build/check-node-version.js",
"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 -f docker/Dockerfile -t microsoft-rewards-bot .",
"format": "prettier --write .",
"format:check": "prettier --check .",
"desk:install": "node ./scripts/start.js desk install",
"desk:uninstall": "node ./scripts/start.js desk uninstall",
"desk:status": "node ./scripts/start.js desk status",
"clear-diagnostics": "rimraf diagnostics",
"clear-sessions": "node ./scripts/main/clearSessions.js",
"open-session": "node ./scripts/main/browserSession.js -email",
"open-session:dev": "node ./scripts/main/browserSession.js -dev -email [email protected]",
"test": "node --test",
"test:dashboard:mock": "npm run build && node -e \"process.env.MSRB_DASHBOARD_MOCK_TEST='1'; require('child_process').execFileSync(process.execPath, ['--test', 'scripts/tests/rewards-side-panel.test.js'], { stdio: 'inherit', env: process.env })\""
},
"keywords": [
"Bing Rewards",
"Microsoft Rewards",
"Bot",
"Script",
"TypeScript",
"Playwright",
"Cheerio"
],
"devDependencies": {
"@types/ms": "^2.1.0",
"@types/node": "^24.10.1",
"@types/semver": "^7.7.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.16.1",
"axios-retry": "^4.5.0",
"bytenode": "^1.5.7",
"chalk": "^4.1.2",
"cheerio": "^1.0.0",
"fingerprint-generator": "^2.1.79",
"fingerprint-injector": "^2.1.79",
"ghost-cursor-playwright-port": "^1.4.3",
"http-proxy-agent": "^7.0.2",
"https-proxy-agent": "^7.0.6",
"isolated-vm": "^6.1.2",
"ms": "^2.1.3",
"node-notifier": "^10.0.1",
"otpauth": "^9.4.1",
"p-queue": "^9.0.1",
"patchright": "^1.57.0",
"semver": "^7.7.3",
"socks-proxy-agent": "^8.0.5",
"ts-node": "^10.9.2",
"zod": "^4.3.5"
}
}