-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathdeno.json
41 lines (41 loc) · 1.96 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
37
38
39
40
41
{
"tasks": {
"dev": "deno run -A --watch main.ts",
"start": "deno run --allow-read --allow-write=api_tokens.yml --allow-env --allow-sys --allow-net --allow-ffi --allow-run main.ts",
"bindings": "cd bindings && ./bindings.sh",
"generate-sha": "deno run --allow-run --allow-write=gitSha.txt generateGitSha.ts",
"compile": "deno compile --allow-read --allow-write=api_tokens.yml --allow-env --allow-sys --allow-net --allow-ffi --allow-run --include=gitSha.txt main.ts",
"build": "deno task generate-sha && deno task compile",
"bindings-win": "cd bindings && powershell -ExecutionPolicy Bypass -File bindings.ps1",
"compile-win": "deno compile --allow-read --allow-write=api_tokens.yml --allow-env --allow-sys --allow-net --allow-ffi --allow-run --include=gitSha.txt --icon assets/icon.ico main.ts",
"build-win": "deno task generate-sha && deno task compile-win"
},
"imports": {
"@/": "./",
"@core/asyncutil": "jsr:@core/asyncutil@^1.2.0",
"@hono/zod-validator": "npm:@hono/zod-validator@^0.4.3",
"@types/command-line-args": "npm:@types/command-line-args@^5.2.3",
"@types/command-line-usage": "npm:@types/command-line-usage@^5.0.4",
"@types/strftime": "npm:@types/strftime@^0.9.8",
"command-line-args": "npm:command-line-args@^6.0.1",
"command-line-usage": "npm:command-line-usage@^7.0.3",
"hono": "npm:hono@^4.7.4",
"@huggingface/jinja": "npm:@huggingface/jinja@^0.3.3",
"@scalar/hono-api-reference": "npm:@scalar/hono-api-reference@0.5.172",
"@std/async": "jsr:@std/async@^1.0.11",
"@std/path": "jsr:@std/path@^1.0.8",
"hono-openapi": "npm:hono-openapi@^0.4.6",
"@std/yaml": "jsr:@std/yaml@^1.0.5",
"strftime": "npm:strftime@^0.10.3",
"winston": "npm:winston@^3.17.0",
"yoctocolors": "npm:yoctocolors@^2.1.1",
"zod": "npm:zod@^3.24.2",
"zod-openapi": "npm:zod-openapi@^4.2.3"
},
"fmt": {
"indentWidth": 4,
"semiColons": true,
"include": ["**/*.ts"],
"lineWidth": 80
}
}