Files
castorsrm/package.json
Nguyễn Thế Hưng c6b571c68d chore: move pino-pretty to dependencies
Sacrifice minimal performance for readability :cat_smirk:
2025-04-14 08:43:02 +07:00

31 lines
761 B
JSON

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