13 lines
295 B
JSON
13 lines
295 B
JSON
{
|
|
"tasks": {
|
|
"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"
|
|
},
|
|
"imports": {
|
|
"@std/assert": "jsr:@std/assert@1",
|
|
"@/": "./src/"
|
|
}
|
|
}
|