-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
deno.jsonc
41 lines (41 loc) · 1.68 KB
/
deno.jsonc
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
{
"tasks": {
"dev": "deno run -A src/util/resume/index.js &&MODE=DEV deno run -A --unstable-hmr main.js",
"build": "deno run -A src/util/resume/index.js &&MODE=PRO deno run -A main.js",
"preview": "MODE=PRE deno run -A --unstable-hmr main.js",
"new": "deno run -A scripts/new.ts new -c rust"
},
"fmt": {
"semiColons": false,
"singleQuote": true,
"indentWidth": 2,
"useTabs": false,
"lineWidth": 80,
"include": [
"src/util/**/*.js",
"main.js",
"public/JavaScript/*.js",
"scripts/*.ts",
"**/*.json"
]
},
"imports": {
"fs": "https://deno.land/[email protected]/fs/mod.ts",
"type-mdast": "https://cdn.jsdelivr.net/npm/@types/[email protected]/index.d.ts",
"unified": "https://esm.sh/[email protected]",
"unist-util-visit": "https://esm.sh/[email protected]",
"remark-parse": "https://esm.sh/[email protected]",
"remark-rehype": "https://esm.sh/[email protected]",
"rehype-raw": "https://esm.sh/[email protected]",
"rehype-stringify": "https://esm.sh/[email protected]",
"rehype-slug": "https://esm.sh/[email protected]",
"rehype-autolink-headings": "https://esm.sh/[email protected]",
"@shikijs/rehype": "https://esm.sh/@shikijs/[email protected]",
"remark-gfm": "https://esm.sh/[email protected]",
"yaml": "https://deno.land/[email protected]/yaml/mod.ts",
"Command": "https://deno.land/x/[email protected]/command/mod.ts",
"datetime": "https://deno.land/[email protected]/datetime/format.ts",
"lightningcss": "https://cdn.jsdelivr.net/npm/lightningcss-wasm/+esm",
"@cloudflare/workers-types": "https://cdn.jsdelivr.net/npm/@cloudflare/workers-types@latest/index.ts"
}
}