-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathdeno.json
30 lines (30 loc) · 986 Bytes
/
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
{
"compilerOptions": {
"jsx": "react-jsx",
"jsxImportSource": "npm:preact",
"types": [
"lume/types.ts"
]
},
"tasks": {
"lume": "echo \"import 'lume/cli.ts'\" | deno run -A -",
"build": "MODE=build deno task lume",
"serve": "MODE=serve deno task lume -s",
"build:deps": "./ci/install.sh",
"build:metadata": "./ci/genmetadata.sh",
"deploy": "./ci/deploy.sh",
"test": "./ci/test.sh",
"sync": "./ci/externalsync.sh"
},
"imports": {
"lume/": "https://deno.land/x/[email protected]/",
"prettier": "npm:[email protected]",
"rehype-pretty-code": "npm:[email protected]",
"remark-callout": "npm:@r4ai/[email protected]",
"top-domain": "npm:@segment/[email protected]",
"hast-util-from-html-isomorphic": "npm:[email protected]",
"remark-toc": "npm:[email protected]",
"rehype-slug": "npm:[email protected]",
"rehypeAutolinkHeadings": "npm:[email protected]"
}
}