-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathconstants.ts
49 lines (47 loc) · 1.18 KB
/
constants.ts
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
export const ENHANCED_IMAGE_REGEX = /<enhanced:img/;
export const GITHUB_REPO_URL = 'https://github.com/max-got/originui-svelte/' as const;
export const POSSIBLE_DEPENDENCIES = [
{
dev: false,
name: 'bits-ui',
packageName: 'bits-ui@next',
url: 'https://github.com/huntabyte/bits-ui'
},
{
dev: false,
name: 'lucide-svelte',
packageName: 'lucide-svelte',
url: 'https://github.com/lucide-icons/lucide'
},
{
dev: true,
name: '~icons/ri',
packageName: '@iconify-json/ri',
url: 'https://www.npmjs.com/package/@iconify-json/ri'
},
{
dev: true,
name: '~icons/ri',
packageName: 'unplugin-icons',
url: 'https://github.com/antfu/unplugin-icons'
},
{
dev: false,
name: '@internationalized/date',
packageName: '@internationalized/date',
url: 'https://github.com/adobe/react-spectrum/tree/main/packages/@internationalized/date'
},
{
dev: false,
name: 'inputmask',
packageName: 'inputmask',
url: 'https://github.com/RobinHerbots/Inputmask'
},
{
dev: false,
name: 'svelte-sonner',
packageName: 'svelte-sonner',
url: 'https://github.com/wobsoriano/svelte-sonner'
}
] as const;
export type PossibleDependency = (typeof POSSIBLE_DEPENDENCIES)[number];