summaryrefslogtreecommitdiff
path: root/deno.json
blob: e21a93be3fea9061ef84dbc2b502b219edcedd96 (plain)
1
2
3
4
5
6
7
8
9
10
{
  "imports": {
    "lodash": "https://esm.sh/[email protected]",
    "./": "./"
  }
  "tasks": {
    "start": "deno run --allow-net --allow-read --allow-sys index.js"
    "compile": "deno compile --allow-net --allow-read --allow-sys index.js"
  }
}