browsertrix-crawler/package.json
Ilya Kreymer 6531d52e2c browser: just pass profileUrl and track if custom profile is used
browser: don't disable service workers always (accidentally added as part of playwright migration)
only disable if using profile, same as 0.8.x behavior
potential fix for #288
bump version to 0.9.1
2023-04-22 12:35:24 -07:00

37 lines
990 B
JSON

{
"name": "browsertrix-crawler",
"version": "0.9.1",
"main": "browsertrix-crawler",
"type": "module",
"repository": "https://github.com/webrecorder/browsertrix-crawler",
"author": "Ilya Kreymer <ikreymer@gmail.com>, Webrecorder Software",
"license": "AGPL-3.0-or-later",
"scripts": {
"lint": "eslint *.js util/*.js tests/*.test.js",
"test": "yarn node --experimental-vm-modules $(yarn bin jest --bail 1)"
},
"dependencies": {
"@novnc/novnc": "^1.4.0",
"browsertrix-behaviors": "^0.5.0-beta.0",
"get-folder-size": "^4.0.0",
"ioredis": "^4.27.1",
"js-yaml": "^4.1.0",
"minio": "7.0.26",
"playwright-core": "^1.31.2",
"sitemapper": "^3.1.2",
"uuid": "8.3.2",
"warcio": "^1.6.0",
"ws": "^7.4.4",
"yargs": "^16.0.3"
},
"devDependencies": {
"eslint": "^7.20.0",
"eslint-plugin-react": "^7.22.0",
"jest": "^29.2.1",
"md5": "^2.3.0"
},
"jest": {
"transform": {},
"testTimeout": 90000
}
}