-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdeno.jsonc
More file actions
21 lines (21 loc) · 797 Bytes
/
deno.jsonc
File metadata and controls
21 lines (21 loc) · 797 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"tasks": {
"build": "deno run -RW --allow-run cli.ts",
"generate": "deno run -RWE typescript-json-schema --required model.ts Schema -o schema.json",
"test": "deno test -R --coverage=coverage",
"coverage": "deno coverage coverage",
"coverage:output": "deno coverage coverage --lcov --output=coverage.lcov"
},
"exclude": ["README.md", "README_EN.md"],
"imports": {
"@std/assert": "jsr:@std/assert@^1.0.11",
"@std/cli": "jsr:@std/cli@^1.0.12",
"@std/csv": "jsr:@std/csv@^1.0.5",
"@std/fs": "jsr:@std/fs@^1.0.11",
"@std/path": "jsr:@std/path@^1.0.8",
"@whyk/utils": "jsr:@whyk/utils@^1.7.1",
"@zip-js/zip-js": "jsr:@zip-js/zip-js@^2.8.17",
"typescript-json-schema": "npm:typescript-json-schema@^0.67.1",
"zod": "npm:zod@^3.24.1"
}
}