-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathdeno.jsonc
More file actions
26 lines (26 loc) · 842 Bytes
/
deno.jsonc
File metadata and controls
26 lines (26 loc) · 842 Bytes
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
{
"tasks": {
"bundle": "deno run -A scripts/build.ts",
"bundle:commit": "deno task bundle && git add -u dist && git commit -m 'deno task bundle'"
},
"fmt": {
"exclude": ["./dist/", "./npm/"],
"proseWrap": "preserve"
},
"lint": {
"exclude": ["./dist/", "./npm/"]
},
"imports": {
"@cliffy/command": "jsr:@cliffy/command@^1.0.0-rc.8",
"@kesin11/gha-utils": "jsr:@kesin11/gha-utils@0.2.3",
"@std/assert": "jsr:@std/assert@^1.0.13",
"@std/collections": "jsr:@std/collections@^1.1.2",
"@deno/dnt": "jsr:@deno/dnt@0.42.3",
"@std/encoding": "jsr:@std/encoding@^1.0.10",
"@std/yaml": "jsr:@std/yaml@^1.0.11",
"esbuild": "npm:esbuild@0.27.3",
"@actions/core": "npm:@actions/core@2.0.3",
"@actions/github": "npm:@actions/github@7.0.0",
"date-fns": "npm:date-fns@4.1.0"
}
}