-
Notifications
You must be signed in to change notification settings - Fork 381
Expand file tree
/
Copy pathdeno.jsonc
More file actions
57 lines (57 loc) · 2.44 KB
/
deno.jsonc
File metadata and controls
57 lines (57 loc) · 2.44 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"tasks": {
"docs": {
"description": "documentation site generation",
"command": "deno task --cwd docs"
},
"docs:gen": {
"description": "automated documentation generation for CLI and Lua API",
"command": "deno fmt",
"dependencies": ["docs:gen:cli", "docs:gen:lua"]
},
"docs:gen:cli": "deno run --allow-run=./cataclysm-bn-tiles --allow-write=docs ./scripts/gen_cli_docs.ts --output docs/en/dev/reference/cli_options.md",
"docs:gen:lua": "./cataclysm-bn-tiles --lua-doc docs/en/mod/lua/reference/lua.md --lua-types lua_annotations.lua",
"migrate-unit": "deno run -A scripts/migrate_legacy_unit.ts --path data/json; deno run -A scripts/migrate_legacy_unit.ts --path data/mods; make style-all-json-parallel",
"dprint": "deno run -A npm:dprint",
"changelog:reddit": {
"description": "creates a weekly reddit changelog template",
"command": "deno run -A scripts/changelog/main.ts --format reddit"
},
"semantic": {
"description": "update available semantic commit types",
"command": "deno run -R=data/mods -W=.github/semantic.yml scripts/semantic.ts"
},
"affected-files": "deno run -RWEN --allow-run scripts/affected_files.ts"
},
"test": { "include": ["scripts", ".agents"] },
"lint": {
"include": ["scripts", ".agents"],
"rules": { "exclude": ["no-unversioned-import", "no-import-prefix"] }
},
"unstable": ["raw-imports", "fmt-component", "temporal"],
"fmt": {
"exclude": ["doc"],
"include": ["scripts", ".agents", "doc", "docs", "*.md", ".github", ".claude"],
"semiColons": false,
"lineWidth": 100,
"proseWrap": "preserve"
},
"imports": {
"$asynciter/": "https://deno.land/x/asynciter@0.0.18/",
"$catjazz/": "https://deno.land/x/catjazz@v0.0.6/",
"$outdent/": "https://deno.land/x/outdent@v0.8.0/",
"$zod/": "https://deno.land/x/zod@v3.22.4/",
"@cliffy/command": "jsr:@cliffy/command@^1.0.0-rc.7",
"@cliffy/flags": "jsr:@cliffy/flags@^1.0.0-rc.7",
"@scarf/json-map": "jsr:@scarf/json-map@^0.0.4",
"@std/assert": "jsr:@std/assert@^1.0.15",
"@std/async": "jsr:@std/async@^1.0.15",
"@std/collections": "jsr:@std/collections@^1.1.3",
"@std/fmt": "jsr:@std/fmt@^1.0.8",
"@std/front-matter": "jsr:@std/front-matter@^1.0.9",
"@std/fs": "jsr:@std/fs@^1.0.19",
"@std/path": "jsr:@std/path@^1.1.2",
"@std/yaml": "jsr:@std/yaml@^1.0.10",
"@valibot/valibot": "jsr:@valibot/valibot@^1.1.0"
}
}