-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeno.json
More file actions
35 lines (30 loc) · 1.24 KB
/
Copy pathdeno.json
File metadata and controls
35 lines (30 loc) · 1.24 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
{
"workspace": [
"./packages/core",
"./packages/web",
"./packages/web/adapter/lib",
"./packages/cli"
],
"tasks": {
"develop": "deno task --cwd packages/web build:local && deno task --cwd packages/cli develop --log-level DEBUG gui",
"compile": "deno task --cwd packages/web prepare && deno task --cwd packages/web build && deno task --cwd packages/cli compile",
"compile:local": "deno task --cwd packages/web prepare && deno task --cwd packages/web build:local && deno task --cwd packages/cli compile:os:linux"
},
"imports": {
"@std/datetime": "jsr:@std/datetime@^0.225.3",
"@std/yaml": "jsr:@std/yaml@^1.0.5",
"@std/fmt": "jsr:@std/fmt@0.225.6",
"@std/fs": "jsr:@std/fs@0.229.3",
"@std/log": "jsr:@std/log@^0.224.6",
"@std/media-types": "jsr:@std/media-types@0.224.0",
"@std/path": "jsr:@std/path@1.0.3",
"forager": "./src/mod.ts",
"ts-pattern": "npm:ts-pattern@5.2.0",
"@torm/sqlite": "jsr:@torm/sqlite@^1.9.7",
"zod": "npm:zod@4.1.11",
"forager-test": "./lib/test/lib/util.ts"
},
"unstable": ["raw-imports"],
"nodeModulesDir": "auto",
"allowScripts": ["npm:@sveltejs/kit@2.5.24", "npm:@tailwindcss/oxide@4.1.14", "npm:esbuild@0.25.10", "npm:fsevents@2.3.3"]
}