Files
castorsrm/package.json

31 lines
739 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"
},
"devDependencies": {
"@swc-node/register": "^1.10.10",
"@swc/cli": "^0.6.0",
"@swc/core": "^1.11.20",
"@types/bun": "latest",
"pino-pretty": "^13.0.0"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"dependencies": {
"patchright": "^1.51.3",
"pino": "^9.6.0",
"playwright": "^1.51.1"
},
"trustedDependencies": [
"@swc/core"
]
}