Files
code-advent-2025/deno.json

16 lines
511 B
JSON

{
"tasks": {
"setup": "git config --local core.hooksPath .githooks && cd .githooks && chmod +x *",
"dev": "deno run -R --watch src/main.ts",
"today:dev": "deno run -R --watch src/main.ts $(date +%e)",
"today": "deno run -R src/main.ts $(date +%e)",
"test": "deno test --parallel src",
"lint:commit": "commitlint --edit"
},
"imports": {
"@commitlint/cli": "npm:@commitlint/cli@^20.1.0",
"@std/assert": "jsr:@std/assert@1",
"lint-staged": "npm:lint-staged@^16.2.7"
}
}