Files
castorsrm/package.json

32 lines
810 B
JSON
Raw Normal View History

2025-04-12 19:38:54 +07:00
{
"name": "castorsrm",
"version": "0.1.0",
"module": "src/index.ts",
"type": "module",
"scripts": {
"dev": "node --env-file=.env --import @swc-node/register/esm-register ./src/index.ts",
"dev-bun": "bun ./src/index.ts",
"start": "node ./dist/index.js",
"start-bun": "bun ./dist/index.js",
"build": "swc ./src -d dist --strip-leading-paths"
2025-04-12 19:38:54 +07:00
},
"devDependencies": {
"@swc-node/register": "^1.11.1",
2025-04-12 19:38:54 +07:00
"@swc/cli": "^0.6.0",
"@swc/core": "^1.15.11",
"@types/bun": "latest"
2025-04-12 19:38:54 +07:00
},
"peerDependencies": {
"typescript": "^5.8.3"
2025-04-12 19:38:54 +07:00
},
"dependencies": {
"@ghostery/adblocker-playwright": "^2.14.1",
"patchright": "^1.57.0",
"pino": "^9.14.0",
"pino-pretty": "^13.1.3",
"playwright": "^1.58.2"
2025-04-12 19:38:54 +07:00
},
"trustedDependencies": [
"@swc/core"
]
}