{ "imports": { "app/": "./src/application/", "domain/": "./src/domain/", "infra/": "./src/infrastructure/", "if/": "./src/interfaces/", "deps": "./src/deps.ts", "std/": "https://deno.land/std@0.191.0/" }, "tasks": { "dev": "deno run --watch --allow-read --allow-env --allow-net ./src/main.ts", "test": "deno test ./test/test.ts" }, "lint": { "files": { "include": ["src/"] }, "rules": { "tags": ["recommended"] } }, "fmt": { "include": ["src/", "test/"], "useTabs": false, "lineWidth": 80, "indentWidth": 2, "singleQuote": true } }