This repository has been archived by the owner on Jul 18, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
107 lines (107 loc) · 3.47 KB
/
package.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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "@impierce/ui-components",
"version": "0.1.2",
"repository": {
"type": "git",
"url": "https://github.com/Impierce/ui-components.git"
},
"scripts": {
"dev": "vite dev",
"build": "vite build && npm run package",
"preview": "vite preview",
"package": "svelte-kit sync && svelte-package && npm run build:tailwind && publint",
"prepublishOnly": "npm run package",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"test": "playwright test",
"test:unit": "vitest",
"coverage": "vitest run --coverage",
"lint": "prettier --plugin-search-dir . --check . && eslint .",
"format": "prettier --plugin-search-dir . --write .",
"storybook": "concurrently 'npm:watch:*' ",
"watch:storybook": "storybook dev -p 6006 --no-open",
"watch:tailwind": "npx tailwindcss -i ./src/app.css -o ./static/tailwind.css --watch",
"build-storybook": "npm run build:tailwind && storybook build",
"build:tailwind": "npx tailwindcss -i ./src/app.css -o ./static/tailwind.css -o ./dist/main.css"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"svelte": "./dist/index.js"
}
},
"files": [
"dist"
],
"engines": {
"node": ">=18.0.0"
},
"peerDependencies": {
"svelte": "^3.57.0"
},
"dependencies": {
"@melt-ui/svelte": "^0.39.1",
"class-variance-authority": "^0.6.0",
"clsx": "^1.2.1",
"flag-icons": "^6.7.0",
"lucide-svelte": "^0.236.0",
"radix-svelte": "^0.7.1",
"svelte-headlessui": "^0.0.16",
"svelte-heros-v2": "^0.4.2",
"svelte-svg-spinners": "^0.2.0",
"tailwind-merge": "^1.13.0",
"tailwindcss-animate": "^1.0.5"
},
"devDependencies": {
"@iconify-json/flag": "^1.1.32",
"@iconify-json/lucide": "^1.1.109",
"@iconify-json/ph": "^1.1.6",
"@melt-ui/pp": "^0.1.2",
"@playwright/test": "^1.28.1",
"@storybook/addon-essentials": "~7.0.27",
"@storybook/addon-interactions": "~7.0.27",
"@storybook/addon-links": "~7.0.27",
"@storybook/addon-styling": "^1.3.5",
"@storybook/blocks": "~7.0.27",
"@storybook/svelte": "~7.0.27",
"@storybook/sveltekit": "~7.0.27",
"@storybook/testing-library": "^0.2.0",
"@sveltejs/adapter-auto": "^2.0.0",
"@sveltejs/kit": "^1.5.0",
"@sveltejs/package": "^2.0.0",
"@tailwindcss/typography": "^0.5.9",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/svelte": "^3.2.2",
"@typescript-eslint/eslint-plugin": "^5.45.0",
"@typescript-eslint/parser": "^5.45.0",
"@vitest/coverage-c8": "^0.29.2",
"autoprefixer": "^10.4.13",
"concurrently": "^7.6.0",
"eslint": "^8.28.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-storybook": "^0.6.13",
"eslint-plugin-svelte3": "^4.0.0",
"jsdom": "^21.1.0",
"postcss": "^8.4.21",
"prettier": "^2.8.0",
"prettier-plugin-svelte": "^2.8.1",
"prettier-plugin-tailwindcss": "^0.2.6",
"publint": "^0.1.9",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"storybook": "~7.0.27",
"storybook-tailwind-dark-mode": "^1.0.22",
"svelte": "^3.57.0",
"svelte-check": "^3.0.1",
"svelte-sequential-preprocessor": "^2.0.1",
"tailwindcss": "^3.2.7",
"tslib": "^2.4.1",
"typescript": "^4.9.3",
"unplugin-icons": "^0.16.3",
"vite": "^4.0.0",
"vitest": "^0.29.2"
},
"svelte": "./dist/index.js",
"types": "./dist/index.d.ts",
"type": "module"
}