2024-01-15 20:46:54 +01:00
|
|
|
{
|
2024-01-15 23:19:59 +01:00
|
|
|
"tasks": {
|
|
|
|
"start": "deno run --allow-read --allow-net ./main.ts",
|
|
|
|
"compile": "deno task compile:linux && deno task compile:windows",
|
|
|
|
"compile:linux": "deno compile --allow-read --allow-net --target=x86_64-unknown-linux-gnu -o=dist/redmine-csv-loader ./main.ts",
|
|
|
|
"compile:windows": "deno compile --allow-read --allow-net --target=x86_64-pc-windows-msvc -o=dist/redmine-csv-loader.exe ./main.ts"
|
|
|
|
},
|
2024-01-15 20:46:54 +01:00
|
|
|
"fmt": {
|
|
|
|
"singleQuote": true,
|
2024-01-15 21:05:44 +01:00
|
|
|
"semiColons": false,
|
2024-01-15 20:46:54 +01:00
|
|
|
"useTabs": true,
|
|
|
|
"indentWidth": 4
|
|
|
|
},
|
|
|
|
"imports": {
|
|
|
|
"std:csv": "https://deno.land/std@0.212.0/csv/mod.ts",
|
2024-01-15 23:12:49 +01:00
|
|
|
"bluemine": "https://deno.land/x/bluemine@0.1.4/mod.ts",
|
|
|
|
"cliffy": "https://deno.land/x/cliffy@v1.0.0-rc.3/command/mod.ts"
|
2024-01-15 20:46:54 +01:00
|
|
|
}
|
|
|
|
}
|