blowater/deno.json

56 lines
1.6 KiB
JSON
Raw Normal View History

2023-06-30 14:05:57 +00:00
{
2024-05-24 09:54:27 +00:00
"tasks": {
"hook": "deno run --allow-read --allow-run --allow-write https://deno.land/x/deno_hooks@0.1.2/mod.ts"
},
2023-06-30 14:05:57 +00:00
"compilerOptions": {
"checkJs": false,
"jsxFactory": "h",
"jsxFragmentFactory": "Fragment"
2023-06-30 14:05:57 +00:00
},
"lint": {
"rules": {
"tags": [
"recommended"
],
"exclude": [
"prefer-const",
"no-inferrable-types",
2024-06-17 07:42:51 +00:00
"require-await",
"ban-ts-comment",
"no-async-promise-executor",
"no-case-declarations",
"no-window",
"no-unused-vars"
2023-06-30 14:05:57 +00:00
]
2024-06-17 07:42:51 +00:00
},
"exclude": ["app/UI/assets", "build-pwa", "libs", "*.test.*"]
2023-06-30 14:05:57 +00:00
},
"fmt": {
2024-05-27 18:55:43 +00:00
"exclude": [
"UI/vendor/",
"vendor",
"*cov_profile*",
"*tauri*",
2024-06-01 06:57:02 +00:00
"app/UI/assets/",
"*/tailwind.js",
"build-pwa/"
2024-05-27 18:55:43 +00:00
],
"indentWidth": 4,
"lineWidth": 110
2024-06-17 07:42:51 +00:00
},
"test": {
"exclude": ["libs/*"]
},
"imports": {
"@blowater/csp": "jsr:@blowater/csp@1.0.0",
2024-07-07 03:28:16 +00:00
"@blowater/nostr-sdk": "jsr:@blowater/nostr-sdk@0.0.3",
"@std/assert": "jsr:@std/assert@0.226.0",
"@std/datetime": "jsr:@std/datetime@0.224.2",
"@std/encoding": "jsr:@std/encoding@1.0.0",
"@std/fs": "jsr:@std/fs@0.229.3",
2024-07-05 10:10:19 +00:00
"@std/path": "jsr:@std/path@0.225.2",
"preact": "https://esm.sh/preact@10.22.1",
"preact/hooks": "https://esm.sh/preact@10.22.1/hooks"
2023-06-30 14:05:57 +00:00
}
}