-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathjsrepo-build-config.json
66 lines (66 loc) · 1.69 KB
/
jsrepo-build-config.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
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"$schema": "https://unpkg.com/[email protected]/schemas/registry-config.json",
"meta": {
"authors": ["Aidan Bleser"],
"bugs": "https://github.com/ieedan/shadcn-svelte-extras/issues",
"description": "Turn key shadcn-svelte components to help finish your app.",
"homepage": "https://www.shadcn-svelte-extras.com/",
"repository": "https://github.com/ieedan/shadcn-svelte-extras",
"tags": ["svelte", "shadcn", "typescript", "components", "utilities"]
},
"peerDependencies": {
"svelte": "5.x.x",
"tailwindcss": {
"version": "3.x.x",
"message": "Tailwindcss@v4 support is in progress see: https://github.com/huntabyte/shadcn-svelte/issues/1643"
}
},
"dirs": ["./src/lib/components", "./src/lib"],
"includeBlocks": [],
"includeCategories": ["ui", "hooks", "utils", "actions"],
"excludeBlocks": [],
"excludeCategories": [],
"doNotListBlocks": [],
"doNotListCategories": [],
"listBlocks": [
"avatar-group",
"button",
"chat",
"code",
"copy-button",
"field-set",
"file-drop-zone",
"image-cropper",
"ipv4address-input",
"kbd",
"light-switch",
"link",
"modal",
"nlp-date-input",
"phone-input",
"pm-command",
"snippet",
"tags-input",
"terminal",
"theme-selector",
"tree-view",
"window",
"active.svelte",
"shortcut.svelte",
"use-auto-scroll.svelte",
"use-boolean.svelte",
"use-clipboard.svelte"
],
"listCategories": [],
"excludeDeps": ["svelte"],
"preview": true,
"rules": {
"no-category-index-file-dependency": "warn",
"no-unpinned-dependency": "warn",
"require-local-dependency-exists": "error",
"max-local-dependencies": ["warn", 10],
"no-circular-dependency": "error",
"no-unused-block": "warn",
"no-framework-dependency": "error"
}
}