-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdeno.json
More file actions
37 lines (37 loc) · 1.51 KB
/
deno.json
File metadata and controls
37 lines (37 loc) · 1.51 KB
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
{
"tasks": {
"release": "deno run -A tasks/release.ts",
"dev-build": "deno run -A tasks/build.ts --dev",
"build": "deno run -A tasks/build.ts",
"concat": "deno run -A tasks/concat.ts",
"dev-watch": "deno run -A tasks/watch.ts --dev",
"watch": "deno run -A tasks/watch.ts",
"check": "deno run -A @biomejs/biome check --write --unsafe",
"format": "deno run -A @biomejs/biome format --write"
},
"imports": {
"@babel/preset-react": "npm:@babel/preset-react@7.28.5",
"@babel/preset-typescript": "npm:@babel/preset-typescript@7.28.5",
"@biomejs/biome": "npm:@biomejs/biome@2.3.13",
"@esbuild/": "https://deno.land/x/esbuild@v0.27.2/",
"@oazmi/esbuild-plugin-deno": "jsr:@oazmi/esbuild-plugin-deno@0.4.5",
"@std/path": "jsr:@std/path@1.1.4",
"@std/streams": "jsr:@std/streams@1.0.17",
"babel-plugin-react-compiler": "npm:babel-plugin-react-compiler@19.1.0-rc.3",
"esbuild-plugin-babel": "npm:esbuild-plugin-babel@0.2.3",
"dexie": "npm:dexie@^4.2.1",
"react": "https://esm.sh/react@19.2.3",
"react-compiler-runtime": "npm:react-compiler-runtime@19.1.0-rc.3",
"react-dom": "https://esm.sh/react-dom@19.2.3",
"react-dom/client": "https://esm.sh/react-dom@19.2.3/client",
"react/jsx-runtime": "https://esm.sh/react@19.2.3/jsx-runtime"
},
"compilerOptions": {
"lib": ["ESNext", "DOM", "DOM.Iterable", "dom.asynciterable", "deno.ns", "deno.unstable"],
"jsx": "react-jsx"
},
"nodeModulesDir": "auto",
"lint": {
"exclude": ["**/*"]
}
}