-
Notifications
You must be signed in to change notification settings - Fork 0
/
deno.json
44 lines (44 loc) · 1.17 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
42
43
44
{
"nodeModulesDir": "auto",
"workspace": ["./packages/core", "./packages/cli", "./packages/pkg-json"],
"tasks": {
"r": "deno run -A packages/cli/src/mod.ts gen",
"r:w": "deno run -A --watch scripts/gen-readme.ts",
"c": "cog changelog > CHANGELOG.md",
"f": "deno fmt"
},
"imports": {
"@cliffy/command": "jsr:@cliffy/command@1.0.0-rc.7",
"@elcoosp-configs/biome": "npm:@elcoosp-configs/biome@0",
"@mdx-js/mdx": "npm:@mdx-js/mdx@^3.1.0",
"@std/assert": "jsr:@std/assert@1.0.10",
"@std/fs": "jsr:@std/fs@1.0.8",
"@std/jsonc": "jsr:@std/jsonc@1.0.1",
"@std/path": "jsr:@std/path@^1.0.8",
"@std/toml": "jsr:@std/toml@1.0.2",
"@wok/case": "jsr:@wok/case@^1.0.2",
"react": "npm:react@^18.3.1",
"react-dom": "npm:react-dom@^18.3.1",
"@std/testing": "jsr:@std/testing@^1.0.8"
},
"fmt": {
"singleQuote": true,
"semiColons": false,
"exclude": [
"**/README.md",
"**/CHANGELOG.md",
"**/docs",
".vscode",
"deno_cache",
"packages/documentation",
".changeset"
]
},
"lint": {
"exclude": [
"**/docs",
"deno_cache",
"packages/documentation"
]
}
}