mirror of
https://github.com/TxtDot/webder.git
synced 2024-11-05 13:13:59 +03:00
43 lines
1.3 KiB
JSON
43 lines
1.3 KiB
JSON
{
|
|
"name": "webder",
|
|
"version": "1.0.1",
|
|
"description": "Http/s proxy that render pages with js and returns HTML",
|
|
"main": "dist/app.js",
|
|
"private": true,
|
|
"scripts": {
|
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
"build": "npm run lint && copyfiles .env ./dist/ && tsc",
|
|
"dev": "tsc-watch --onSuccess \"node ./dist/app.js\"",
|
|
"start": "cd dist && node ./app.js",
|
|
"format": "prettier --write .",
|
|
"format:check": "prettier --check .",
|
|
"lint": "eslint \"src/**\""
|
|
},
|
|
"keywords": [],
|
|
"authors": [
|
|
"Artemy Egorov <me@artegoser.ru> https://github.com/artegoser",
|
|
"DarkCat09 <darkcat09@vivaldi.net> https://dc09.ru/",
|
|
"megahomyak https://github.com/megahomyak"
|
|
],
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"@types/dompurify": "^3.0.5",
|
|
"@types/node": "^20.12.12",
|
|
"@typescript-eslint/eslint-plugin": "^7.9.0",
|
|
"@typescript-eslint/parser": "^7.9.0",
|
|
"copyfiles": "^2.4.1",
|
|
"eslint": "^8.57.0",
|
|
"tsc-watch": "^6.2.0",
|
|
"typescript": "^5.4.5"
|
|
},
|
|
"dependencies": {
|
|
"@fastify/one-line-logger": "^1.3.0",
|
|
"dotenv": "^16.4.5",
|
|
"fastify": "^4.27.0",
|
|
"prettier": "^3.2.5",
|
|
"puppeteer": "^22.9.0",
|
|
"puppeteer-extra": "^3.3.6",
|
|
"puppeteer-extra-plugin-adblocker": "^2.13.6",
|
|
"puppeteer-extra-plugin-stealth": "^2.11.2"
|
|
}
|
|
}
|