- 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
10 lines
269 B
JSON
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"
|
|
}
|
|
}
|