summaryrefslogtreecommitdiff
path: root/deno.json
diff options
context:
space:
mode:
Diffstat (limited to 'deno.json')
-rw-r--r--deno.json10
1 files changed, 5 insertions, 5 deletions
diff --git a/deno.json b/deno.json
index 777fc00..aaa93f8 100644
--- a/deno.json
+++ b/deno.json
@@ -1,12 +1,12 @@
{
"imports": {
"lodash": "https://esm.sh/lodash@4.17.21",
- "flags/": "https://deno.land/std/flags/",
- "path/": "https://deno.land/std/path/",
+ "path": "jsr:@std/path",
+ "parse-args": "jsr:@std/cli/parse-args",
"./": "./"
- }
+ },
"tasks": {
- "start": "deno run --allow-net --allow-read --allow-sys index.js"
- "compile": "deno compile --allow-net --allow-read --allow-sys index.js -- --is_compiled_binary"
+ "start": "deno run --allow-net --allow-read --allow-sys index.js",
+ "compile": "deno compile --allow-net --allow-read --allow-sys index.js --is_compiled_binary"
}
}