{
  "$schema": "https://deno.land/x/denon@2.4.9/schema.json",
  "allow": [],
  "unstable": true,
  "watch": false,
  "lock": "lock.json",

  "scripts": {
    "start": {
      "cmd": "mod.ts",
      "desc": "Run app on dev mode"
    },

    "test": {
      "cmd": "deno test",
      "desc": "Test the application"
    },

    "build": {
      "cmd": "deno compile --output=bin/app mod.ts",
      "desc": "Build the app"
    },

    "inst": {
      "cmd": "deno install -f --name=gf mod.ts",
      "desc": "Install the app globally"
    },

    "fmt": {
      "cmd": "deno fmt",
      "desc": "Format the code.",
      "allow": []
    },

    "lint": {
      "cmd": "deno lint",
      "desc": "Code linter for JavaScript and TypeScript",
      "allow": []
    },

    "reload-deps": {
      "cmd": "deno cache --reload --lock-write .\\deps.ts",
      "watch": false,
      "unstable": false,
      "allow": []
    },

    "reload-lock": {
      "cmd": "deno cache --lock-write .\\deps.ts",
      "watch": false,
      "allow": []
    }
  },

  "logger": {
    "fullscreen": true,
    "quiet": false,
    "debug": true
  }
}
