-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeno.json
More file actions
38 lines (38 loc) · 1.66 KB
/
Copy pathdeno.json
File metadata and controls
38 lines (38 loc) · 1.66 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
38
{
"lock": false,
"scripts": { "mono": "deno run -A monodeno.ts" },
"tasks": {
"mono": "deno run -A ./packages/mono/mod.ts",
"check": "deno fmt --check && deno lint && deno check **/*.ts && deno check **/*.tsx",
"cli": "echo \"import '\\$fresh/src/dev/cli.ts'\" | deno run --unstable -A -",
"manifest": "deno task cli manifest $(pwd)",
"start": "deno run -A --watch=static/,routes/ dev.ts",
"build": "deno run -A dev.ts build",
"preview": "deno run -A main.ts",
"update": "deno run -A -r https://fresh.deno.dev/update ."
},
"lint": { "rules": { "tags": ["fresh", "recommended"] } },
"workspaces": ["apps/web", "apps/docs"],
"exclude": ["apps/web/_fresh/*", "apps/docs/_fresh/*"],
"imports": {
"@jurassicjs/ui": "./packages/ui/mod.ts",
"@jurassicjs/roar": "./packages/roar/mod.ts",
"$fresh/": "https://deno.land/x/fresh@1.6.8/",
"$std/": "https://deno.land/std@0.216.0/",
"@crayon/color-support": "jsr:@crayon/color-support@^2.0.0",
"@jurassicjs/monodeno": "./packages/mono/mod.ts",
"@preact/signals": "https://esm.sh/*@preact/signals@1.2.2",
"@preact/signals-core": "https://esm.sh/*@preact/signals-core@1.5.1",
"preact": "https://esm.sh/preact@10.19.6",
"preact/": "https://esm.sh/preact@10.19.6/",
"tailwindcss": "npm:tailwindcss@3.4.1",
"tailwindcss/": "npm:/tailwindcss@3.4.1/",
"tailwindcss/plugin": "npm:/tailwindcss@3.4.1/plugin.js",
"@std/cli": "jsr:@std/cli@^0.220.1",
"@std/fs": "jsr:@std/fs@^0.220.1",
"@std/path": "jsr:@std/path@^0.220.1",
"chalk": "npm:chalk@^5.3.0"
},
"compilerOptions": { "jsx": "react-jsx", "jsxImportSource": "preact" },
"nodeModulesDir": true
}