https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/import https://code.visualstudio.com/docs/languages/jsconfig
15 lines
518 B
JSON
15 lines
518 B
JSON
{
|
|
"scripts": {
|
|
"login": "npx playwright open --save-storage=auth.json https://www.epicgames.com/login",
|
|
"codegen": "npx playwright codegen --load-storage=auth.json https://www.epicgames.com/store/en-US/free-games",
|
|
"test": "npx playwright test --timeout 10000",
|
|
"debug": "npx playwright test --debug",
|
|
"start": "node main.stealth"
|
|
},
|
|
"devDependencies": {
|
|
"@playwright/test": "^1.17.1",
|
|
"playwright": "^1.17.1",
|
|
"puppeteer-extra-plugin-stealth": "^2.9.0"
|
|
},
|
|
"type": "module"
|
|
}
|