-
Notifications
You must be signed in to change notification settings - Fork 195
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.38 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 2.38 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
{
"name": "microsoft-rewards-script",
"version": "3.1.6",
"description": "Automatically do tasks for Microsoft Rewards but in TS!",
"author": "Netsky",
"license": "GPL-3.0-or-later",
"engines": {
"node": ">=24.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 .",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"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 ItsNetsky@protonmail.com"
},
"keywords": [
"Bing Rewards",
"Microsoft Rewards",
"Bot",
"Script",
"TypeScript",
"Playwright",
"Cheerio"
],
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/ms": "^2.1.0",
"@types/node": "^24.10.1",
"@types/semver": "^7.7.1",
"eslint": "^10.4.0",
"eslint-config-prettier": "^10.1.8",
"globals": "^17.6.0",
"prettier": "^3.8.3",
"rimraf": "^6.1.3",
"typescript": "^6.0.3",
"typescript-eslint": "^8.59.4"
},
"dependencies": {
"axios": "^1.16.1",
"axios-retry": "^4.5.0",
"chalk": "^4.1.2",
"cheerio": "^1.2.0",
"fingerprint-generator": "^2.1.82",
"fingerprint-injector": "^2.1.82",
"ghost-cursor-playwright-port": "^1.4.3",
"http-proxy-agent": "^9.0.0",
"https-proxy-agent": "^9.0.0",
"ms": "^2.1.3",
"otpauth": "^9.5.1",
"p-queue": "^9.3.0",
"patchright": "^1.60.0",
"semver": "^7.8.1",
"socks-proxy-agent": "^10.0.0",
"ts-node": "^10.9.2",
"zod": "^4.4.3"
}
}