scroll/package.json

25 lines
688 B
JSON
Raw Normal View History

{
"dependencies": {},
"devDependencies": {
"@types/node": "*",
"bun-types": "*",
"typescript": "^5.5",
"tsx": "*"
2024-07-05 15:51:30 -04:00
},
"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'"
2024-07-05 15:51:30 -04:00
},
"type": "module"
}