-
Notifications
You must be signed in to change notification settings - Fork 6
/
deno.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/faster_react_core@v5.5/builder.ts",
"@helpers/": "https://deno.land/x/faster_react_core@v5.5/helpers/",
"@core": "./main.ts",
"react": "https://esm.sh/react@19.0.0",
"react/": "https://esm.sh/react@19.0.0/",
"node:process": "https://esm.sh/v135/node_process.js",
"i18next": "https://deno.land/x/i18next/index.js",
"react-dom": "https://esm.sh/react-dom@19.0.0",
"react-dom/server": "https://esm.sh/react-dom@19.0.0/server",
"react-dom/client": "https://esm.sh/react-dom@19.0.0/client",
"react/jsx-runtime": "https://esm.sh/react@19.0.0/jsx-runtime",
"walk": "jsr:@std/fs@1.0.3/walk",
"path": "jsr:@std/path@1.0.6",
"faster": "jsr:@hviana/faster@1.0.9",
"deno_kv_fs": "jsr:@hviana/faster@1.0.6/deno-kv-fs",
"jose": "jsr:@hviana/faster@1.0.6/jose",
"esbuild": "https://deno.land/x/esbuild@v0.24.2/mod.js",
"esbuild-portable": "https://deno.land/x/esbuild@v0.24.2/wasm.js",
"esbuild-deno-loader": "jsr:@luca/esbuild-deno-loader@0.11.1",
"b64": "jsr:@std/encoding@1.0.5/base64"
},
"tasks": {
"serve": "deno serve --allow-all --unstable-kv --watch-hmr=app/ main.ts"
}
}