summaryrefslogtreecommitdiff
path: root/deno.json
blob: aaa93f8deb7c9bc73bd1f09646e439418a5fc712 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
{
  "imports": {
    "lodash": "https://esm.sh/lodash@4.17.21",
    "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"
  }
}