Files
DVDSubConverter/deno.json
T
Esa Kataja 73fa8b0925 feat: add CLI argument handling and build script
- Added command-line argument parsing to accept input file path instead of hardcoded value
- Added build task to compile standalone executable with deno compile
- Added usage message for incorrect invocation
2025-11-16 15:40:18 +02:00

10 lines
269 B
JSON

{
"tasks": {
"dev": "deno run --watch --allow-run --allow-write --allow-read src/main.ts",
"build": "deno compile --allow-run --allow-write --allow-read --output dist/dvdsubconvert src/main.ts"
},
"imports": {
"@std/assert": "jsr:@std/assert@1"
}
}