scroll/package.json
Timothy J. Warren 8c54ceb104
All checks were successful
timw4mail/scroll/pipeline/head This commit looks good
Add shell scripts to run without just, fix the issue with bun and tsx failing to exit
2024-07-12 15:33:03 -04:00

25 lines
688 B
JSON

{
"dependencies": {},
"devDependencies": {
"@types/node": "*",
"bun-types": "*",
"typescript": "^5.5",
"tsx": "*"
},
"scripts": {
"bun-check": "bunx tsc",
"bun-coverage": "bun test --coverage",
"bun-run": "bun run ./src/scroll.ts",
"bun-test": "bun test",
"deno-lint": "deno lint",
"deno-check": "deno check --all -c deno.jsonc ./src/deno/*.ts ./src/common/*.ts ./src/tsx/*.ts",
"deno-coverage": "./coverage.sh",
"deno-run": "deno run --allow-all --deny-hrtime ./src/scroll.ts",
"deno-test": "deno test --allow-all",
"tsx-check": "npx tsc",
"tsx-run": "tsx ./src/scroll.ts",
"tsx-test": "tsx --test './src/common/all_test.ts'"
},
"type": "module"
}