-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathdeno.json
36 lines (36 loc) · 1.39 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
{
"name": "@faster/react",
"version": "1.0.0",
"exports": {},
"compilerOptions": {
"lib": ["dom", "dom.asynciterable", "deno.ns"],
"jsx": "react-jsx",
"jsxImportSource": "react"
},
"lock": false,
"imports": {
"builder": "https://deno.land/x/[email protected]/builder.ts",
"@helpers/": "https://deno.land/x/[email protected]/helpers/",
"@core": "./main.ts",
"react": "https://esm.sh/[email protected]",
"react/": "https://esm.sh/[email protected]/",
"node:process": "https://esm.sh/v135/node_process.js",
"i18next": "https://deno.land/x/i18next/index.js",
"react-dom": "https://esm.sh/[email protected]",
"react-dom/server": "https://esm.sh/[email protected]/server",
"react-dom/client": "https://esm.sh/[email protected]/client",
"react/jsx-runtime": "https://esm.sh/[email protected]/jsx-runtime",
"walk": "jsr:@std/[email protected]/walk",
"path": "jsr:@std/[email protected]",
"faster": "jsr:@hviana/[email protected]",
"deno_kv_fs": "jsr:@hviana/[email protected]/deno-kv-fs",
"jose": "jsr:@hviana/[email protected]/jose",
"esbuild": "https://deno.land/x/[email protected]/mod.js",
"esbuild-portable": "https://deno.land/x/[email protected]/wasm.js",
"esbuild-deno-loader": "jsr:@luca/[email protected]",
"b64": "jsr:@std/[email protected]/base64"
},
"tasks": {
"serve": "deno serve --allow-all --unstable-kv --watch-hmr=app/ main.ts"
}
}