-
-
Notifications
You must be signed in to change notification settings - Fork 167
/
deno.json
53 lines (53 loc) · 1.93 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
45
46
47
48
49
50
51
52
53
{
"imports": {
"@/": "./scripts/",
"@actions/core": "npm:@actions/[email protected]",
"@catppuccin/palette": "npm:@catppuccin/palette@^1.7.1",
"@octokit/rest": "npm:@octokit/rest@^21.0.2",
"@std/assert": "jsr:@std/assert@^1.0.9",
"@std/cli": "jsr:@std/cli@^1.0.8",
"@std/fmt": "jsr:@std/fmt@^1.0.2",
"@std/fs": "jsr:@std/fs@^1.0.6",
"@std/path": "jsr:@std/path@^1.0.8",
"@std/yaml": "jsr:@std/yaml@^1.0.5",
"ajv": "npm:[email protected]",
"@catppuccin/catppuccin/": "https://raw.githubusercontent.com/catppuccin/catppuccin/d4f2666c2b04337f0a8632713de0889d9a7d332d/",
"handlebars": "npm:[email protected]",
"json-schema-to-typescript": "npm:json-schema-to-typescript@^15.0.3",
"less": "npm:[email protected]",
"postcss-less": "npm:[email protected]",
"postcss-value-parser": "npm:[email protected]",
"stylelint": "npm:stylelint@^16.12.0",
"stylelint-config-recommended": "npm:[email protected]",
"stylelint-config-standard": "npm:[email protected]",
"svgo": "npm:[email protected]",
"type-fest": "npm:type-fest@^4.30.2",
"usercss-meta": "npm:[email protected]"
},
"tasks": {
"generate": "deno run -A ./scripts/generate/main.ts",
"stylus-import": "deno run -A ./scripts/stylus-import/main.ts",
"sync-maintainers": "deno run -A ./scripts/sync-maintainers/main.ts",
"lint": "deno run -A ./scripts/lint/main.ts",
"lint:fix": "deno task lint --fix",
"update-types": "deno run -A ./scripts/types/update-types.ts",
"bump": "deno run -A ./scripts/bump-version/main.ts"
},
"nodeModulesDir": "auto",
"fmt": {
"indentWidth": 2,
"proseWrap": "never",
"exclude": [
".github/ISSUE_TEMPLATE/userstyle.yml",
".github/*.yml",
"styles/**/*.md",
"scripts/generate/templates/userstyle.md"
]
},
"lint": {
"rules": {
"tags": ["recommended"],
"include": ["verbatim-module-syntax"]
}
}
}