design-system-silkhaus 0.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +39 -0
- package/dist/index.cjs +2543 -0
- package/dist/index.d.ts +16 -0
- package/dist/index.js +2539 -0
- package/dist/style.css +781 -0
- package/package.json +93 -0
package/package.json
ADDED
|
@@ -0,0 +1,93 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "design-system-silkhaus",
|
|
3
|
+
"private": false,
|
|
4
|
+
"version": "0.0.0",
|
|
5
|
+
"description": "A template for creating React component libraries with Vite, Tailwind, and Storybook.",
|
|
6
|
+
"author": "meet-codevyasa",
|
|
7
|
+
"license": "MIT",
|
|
8
|
+
"type": "module",
|
|
9
|
+
"files": [
|
|
10
|
+
"dist"
|
|
11
|
+
],
|
|
12
|
+
"sideEffects": [
|
|
13
|
+
"**/*.css"
|
|
14
|
+
],
|
|
15
|
+
"main": "./dist/index.cjs",
|
|
16
|
+
"module": "./dist/index.js",
|
|
17
|
+
"types": "./dist/index.d.ts",
|
|
18
|
+
"exports": {
|
|
19
|
+
".": {
|
|
20
|
+
"import": {
|
|
21
|
+
"types": "./dist/index.d.ts",
|
|
22
|
+
"default": "./dist/index.js"
|
|
23
|
+
},
|
|
24
|
+
"require": {
|
|
25
|
+
"types": "./dist/index.d.ts",
|
|
26
|
+
"default": "./dist/index.cjs"
|
|
27
|
+
}
|
|
28
|
+
},
|
|
29
|
+
"./css": "./dist/style.css"
|
|
30
|
+
},
|
|
31
|
+
"scripts": {
|
|
32
|
+
"dev": "storybook dev -p 6006",
|
|
33
|
+
"test": "vitest run",
|
|
34
|
+
"test:watch": "vitest",
|
|
35
|
+
"test:ui": "vitest --ui",
|
|
36
|
+
"test:coverage": "vitest run --coverage",
|
|
37
|
+
"build": "storybook build",
|
|
38
|
+
"build:lib": "tsc && vite build",
|
|
39
|
+
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
|
|
40
|
+
"format": "prettier . --write --ignore-unknown",
|
|
41
|
+
"prepare": "husky install"
|
|
42
|
+
},
|
|
43
|
+
"devDependencies": {
|
|
44
|
+
"@storybook/addon-actions": "^7.6.10",
|
|
45
|
+
"@storybook/addon-essentials": "^7.6.10",
|
|
46
|
+
"@storybook/addon-viewport": "^7.6.10",
|
|
47
|
+
"@storybook/blocks": "^7.6.10",
|
|
48
|
+
"@storybook/builder-vite": "^7.6.10",
|
|
49
|
+
"@storybook/react": "^7.6.10",
|
|
50
|
+
"@storybook/react-vite": "^7.6.10",
|
|
51
|
+
"@testing-library/jest-dom": "^6.3.0",
|
|
52
|
+
"@testing-library/react": "^14.1.2",
|
|
53
|
+
"@testing-library/user-event": "^14.5.2",
|
|
54
|
+
"@types/node": "^20.11.10",
|
|
55
|
+
"@types/react": "^18.2.48",
|
|
56
|
+
"@types/react-dom": "^18.2.18",
|
|
57
|
+
"@typescript-eslint/eslint-plugin": "^6.19.1",
|
|
58
|
+
"@typescript-eslint/parser": "^6.19.1",
|
|
59
|
+
"@vitejs/plugin-react-swc": "^3.5.0",
|
|
60
|
+
"@vitest/coverage-v8": "^1.2.2",
|
|
61
|
+
"@vitest/ui": "^1.2.2",
|
|
62
|
+
"autoprefixer": "^10.4.17",
|
|
63
|
+
"clsx": "^2.1.0",
|
|
64
|
+
"eslint": "^8.56.0",
|
|
65
|
+
"eslint-config-prettier": "^9.1.0",
|
|
66
|
+
"eslint-plugin-jest-dom": "^5.1.0",
|
|
67
|
+
"eslint-plugin-react": "^7.33.2",
|
|
68
|
+
"eslint-plugin-react-hooks": "^4.6.0",
|
|
69
|
+
"eslint-plugin-react-refresh": "^0.4.5",
|
|
70
|
+
"eslint-plugin-storybook": "^0.6.15",
|
|
71
|
+
"husky": "^9.0.6",
|
|
72
|
+
"jsdom": "^24.0.0",
|
|
73
|
+
"postcss": "^8.4.33",
|
|
74
|
+
"prettier": "^3.2.4",
|
|
75
|
+
"react": "^18.2.0",
|
|
76
|
+
"react-dom": "^18.2.0",
|
|
77
|
+
"storybook": "^7.6.10",
|
|
78
|
+
"tailwind-merge": "^2.2.1",
|
|
79
|
+
"tailwindcss": "^3.4.1",
|
|
80
|
+
"typescript": "^5.3.3",
|
|
81
|
+
"vite": "^5.0.12",
|
|
82
|
+
"vite-plugin-dts": "^3.7.2",
|
|
83
|
+
"vitest": "^1.2.2"
|
|
84
|
+
},
|
|
85
|
+
"peerDependencies": {
|
|
86
|
+
"react": "^18.2.0",
|
|
87
|
+
"react-dom": "^18.2.0"
|
|
88
|
+
},
|
|
89
|
+
"dependencies": {
|
|
90
|
+
"@radix-ui/react-slot": "^1.0.2",
|
|
91
|
+
"class-variance-authority": "^0.7.0"
|
|
92
|
+
}
|
|
93
|
+
}
|