forked from catppuccin/userstyles
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeno.json
46 lines (46 loc) · 1.75 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
{
"imports": {
"@/": "./scripts/",
"@actions/core": "npm:@actions/core@1.11.1",
"@catppuccin/palette": "npm:@catppuccin/palette@1.3.0",
"@octokit/rest": "npm:@octokit/rest@21.0.1",
"@std/assert": "jsr:@std/assert@^1.0.5",
"@std/cli": "jsr:@std/cli@^1.0.6",
"@std/fmt": "jsr:@std/fmt@^1.0.2",
"@std/fs": "jsr:@std/fs@^1.0.3",
"@std/path": "jsr:@std/path@^1.0.6",
"@std/yaml": "jsr:@std/yaml@^1.0.5",
"ajv": "npm:ajv@8.17.1",
"@catppuccin/catppuccin/": "https://raw.githubusercontent.com/catppuccin/catppuccin/d4f2666c2b04337f0a8632713de0889d9a7d332d/",
"handlebars": "npm:handlebars@4.7.8",
"json-schema-to-typescript": "npm:json-schema-to-typescript@15.0.2",
"less": "npm:less@4.2.0",
"postcss-less": "npm:postcss-less@6.0.0",
"postcss-value-parser": "npm:postcss-value-parser@4.2.0",
"stylelint": "npm:stylelint@16.9.0",
"stylelint-config-recommended": "npm:stylelint-config-recommended@14.0.1",
"stylelint-config-standard": "npm:stylelint-config-standard@36.0.1",
"svgo": "npm:svgo@3.3.2",
"type-fest": "npm:type-fest@4.23.0",
"usercss-meta": "npm:usercss-meta@0.12.0"
},
"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",
"format": "deno run -A npm:prettier@3.2.4 --write ."
},
"nodeModulesDir": true,
"fmt": {
"include": ["scripts/**/*.ts"]
},
"lint": {
"rules": {
"tags": ["recommended"],
"include": ["verbatim-module-syntax"]
}
}
}