diff --git a/deno.json b/deno.json index 94d5194..6eb1ddc 100644 --- a/deno.json +++ b/deno.json @@ -11,15 +11,29 @@ "serve": "deno task preview", "dev:add_package": "deno run --allow-net=git.cohabit.fr --allow-read=. --allow-write=./deno.json,./packages --allow-run=git,deno ./scripts/add_package.ts" }, - "fmt": { "singleQuote": true, "semiColons": false, "useTabs": true }, - "lint": { "rules": { "tags": ["fresh", "recommended"] } }, - "exclude": ["**/_fresh/*", "packages/"], + "fmt": { + "singleQuote": true, + "semiColons": false, + "useTabs": true + }, + "lint": { + "rules": { + "tags": [ + "fresh", + "recommended" + ] + } + }, + "exclude": [ + "**/_fresh/*", + "packages/" + ], "imports": { + "$fresh/": "https://deno.land/x/fresh@1.6.8/", + "$std/": "https://deno.land/std@0.208.0/", ":components/": "./components/", ":islands/": "./islands/", ":src/": "./src/", - "$fresh/": "https://deno.land/x/fresh@1.6.8/", - "$std/": "https://deno.land/std@0.208.0/", "@cohabit/cohamail/": "./packages/@cohabit__cohamail@0.2.1/", "@cohabit/ressources_manager/": "./packages/@cohabit__ressources_manager@0.1.3/", "@jotsr/delayed": "jsr:@jotsr/delayed@^2.1.1", @@ -38,10 +52,15 @@ "univoq": "https://deno.land/x/univoq@0.2.0/mod.ts", "web-push": "npm:web-push@^3.6.7" }, - "compilerOptions": { "jsx": "react-jsx", "jsxImportSource": "preact" }, + "compilerOptions": { + "jsx": "react-jsx", + "jsxImportSource": "preact" + }, "workspaces": [ "packages/@cohabit__cohamail@0.2.1", "packages/@cohabit__ressources_manager@0.1.3" ], - "unstable": ["kv"] + "unstable": [ + "kv" + ] }