scroll/package.json
Timothy J. Warren d7bf8801c9
Some checks failed
timw4mail/scroll/pipeline/head There was a failure building this commit
Put the important scripts package.json so they can be run without Just
2024-07-10 16:32:28 -04:00

23 lines
666 B
JSON

{
"dependencies": {},
"devDependencies": {
"bun-types": "^1.0.11",
"typescript": "^5.5"
},
"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": "npx tsx ./src/scroll.ts",
"tsx-test": "npx tsx --test './src/common/all_test.ts'"
},
"type": "module"
}