-
Notifications
You must be signed in to change notification settings - Fork 0
/
deno.json
52 lines (52 loc) · 2.42 KB
/
deno.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"lock": false,
"nodeModulesDir": true,
"tasks": {
"start": "DEBUG=true deno run --reload -A --watch dev.ts",
"debug": "DEBUG=true deno run --reload -A --inspect main.ts",
"test": "DEBUG=true DENO_ENV=test deno test -A --trace-leaks --clean --quiet --coverage && deno coverage --html",
"fresh:update": "deno run -A -r https://fresh.deno.dev/update .",
"serve": "deno run -A main.ts",
"esm:add": "deno run -A https://esm.sh/v111 add",
"esm:update": "deno run -A https://esm.sh/v111 update",
"esm:remove": "deno run -A https://esm.sh/v111 remove",
"build": "deno run -A dev.ts build",
"preview": "deno run -A main.ts",
"docs": "deno doc --html --name=\"bastilian.me - docs\" --output=./docs/ \"*.ts*\" \"routes/**/*.ts*\" \"components/**/*.ts*\" \"islands/**/*.ts*\" \"services/**/*.ts*\" \"utilities/**/*.ts*\""
},
"compilerOptions": { "jsx": "react-jsx", "jsxImportSource": "preact" },
"imports": {
"$fresh/": "https://deno.land/x/[email protected]/",
"@b-fuze/deno-dom": "jsr:@b-fuze/deno-dom@^0.1.48",
"@bradenmacdonald/s3-lite-client": "jsr:@bradenmacdonald/s3-lite-client@^0.7.6",
"@mikaelporttila/rss": "jsr:@mikaelporttila/rss@^1.1.1",
"@preact/signals": "https://esm.sh/*@preact/[email protected]",
"@preact/signals-core": "https://esm.sh/*@preact/[email protected]",
"@std/datetime": "jsr:@std/datetime@^0.225.2",
"@std/dotenv": "jsr:@std/dotenv@^0.225.2",
"@std/fs": "jsr:@std/fs@^1.0.3",
"@std/media-types": "jsr:@std/media-types@^1.0.3",
"@std/path": "jsr:@std/path@^1.0.6",
"@stdext/crypto/hash": "jsr:@stdext/crypto/hash",
"@supabase/supabase-js": "jsr:@supabase/supabase-js@^2.45.4",
"escape": "https://deno.land/x/escape/mod.ts",
"imagemagick": "https://deno.land/x/[email protected]/mod.ts",
"imagescript": "https://deno.land/x/imagescript/mod.ts",
"preact": "https://esm.sh/[email protected]",
"preact-render-to-string": "https://esm.sh/*[email protected]",
"preact/": "https://esm.sh/[email protected]/",
"tailwindcss": "npm:[email protected]",
"tailwindcss/": "npm:/[email protected]/",
"tailwindcss/plugin": "npm:/[email protected]/plugin.js"
},
"scopes": {
"https://esm.sh/v111/": {
"underscore": "https://esm.sh/v111/[email protected]"
}
},
"lint": { "rules": { "tags": ["fresh", "recommended"] } },
"fmt": {
"exclude": ["static/", ".nova"]
},
"exclude": ["**/_fresh/*"]
}