-
Notifications
You must be signed in to change notification settings - Fork 5
/
deno.json
34 lines (34 loc) · 1.88 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
{
"tasks": {
"lume": "echo \"import 'lume/cli.ts'\" | deno run -A -",
"attach": "echo \"import 'lume/cli.ts'\" | deno run --inspect-wait -A -",
"build": "deno task lume",
"vite-build": "deno run -A --node-modules-dir npm:vite build",
"vite-watch": "export VITE_APP_DEV_MODE=true && deno run -A --node-modules-dir npm:vite build --watch",
"serve": "export DEV_MODE=true && deno task lume -s & deno task vite-watch",
"serve-all": "export MOCK_BACKEND=true && deno task serve",
"about": "deno run --allow-run=gh --allow-read=./tasks/graphql,./site/_generated --allow-write=./site/_generated ./tasks/about.ts",
"activity": "deno run --allow-run=gh --allow-read=./tasks/graphql,./site/activity,./site/_generated --allow-write=./site/_generated ./tasks/activity.ts",
"lastmod": "deno run --allow-run=git,gh --allow-read=. --allow-write=./site/_generated ./tasks/lastmod.ts",
"votes": "deno run --allow-run=gh --allow-read=./tasks/graphql,./site/_generated --allow-write=./site/_generated ./tasks/votes.ts",
"repair": "deno run --allow-run=gh --allow-read=./tasks/graphql,./site/_generated --allow-write=./site/_generated ./tasks/voteRepair.ts"
},
"compilerOptions": {
"types": [
"lume/types.ts"
]
},
"imports": {
"@std/fs": "jsr:@std/fs@^1.0.3",
"@std/path": "jsr:@std/path@^1.0.4",
"@std/yaml": "jsr:@std/yaml@^1.0.5",
"denoResolve": "https://deno.land/x/[email protected]/mod.ts",
"lume/": "https://deno.land/x/[email protected]/",
"npm:markdown-it": "npm:[email protected]",
"npm:markdown-it-anchor": "npm:[email protected]",
"npm:markdown-it-footnote": "npm:[email protected]",
"npm:markdown-it-obsidian-callouts": "npm:[email protected]",
"toc": "https://deno.land/x/[email protected]/toc.ts",
"vento": "https://deno.land/x/[email protected]/deps.ts"
}
}