@ekkolyth/ui 0.0.1
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/README.md +5 -0
- package/dist/index.d.ts +602 -0
- package/dist/index.js +5893 -0
- package/package.json +137 -0
package/package.json
ADDED
|
@@ -0,0 +1,137 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@ekkolyth/ui",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"description": "Shared UI Library for my personal projects",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"theme",
|
|
7
|
+
"dark-mode",
|
|
8
|
+
"next-themes",
|
|
9
|
+
"tanstack-router",
|
|
10
|
+
"react"
|
|
11
|
+
],
|
|
12
|
+
"repository": {
|
|
13
|
+
"type": "git",
|
|
14
|
+
"url": "git+https://github.com/ekkolyth/ui.git"
|
|
15
|
+
},
|
|
16
|
+
"license": "MIT",
|
|
17
|
+
"author": "ekkolyth",
|
|
18
|
+
"type": "module",
|
|
19
|
+
"exports": {
|
|
20
|
+
".": {
|
|
21
|
+
"types": "./dist/index.d.ts",
|
|
22
|
+
"import": "./dist/index.js"
|
|
23
|
+
},
|
|
24
|
+
"./providers/next-theme": {
|
|
25
|
+
"types": "./dist/providers/next-theme-provider.d.ts",
|
|
26
|
+
"import": "./dist/providers/next-theme-provider.js"
|
|
27
|
+
},
|
|
28
|
+
"./providers/tanstack-theme": {
|
|
29
|
+
"types": "./dist/providers/tanstack-theme-provider.d.ts",
|
|
30
|
+
"import": "./dist/providers/tanstack-theme-provider.js"
|
|
31
|
+
}
|
|
32
|
+
},
|
|
33
|
+
"main": "./dist/index.js",
|
|
34
|
+
"types": "./dist/index.d.ts",
|
|
35
|
+
"files": [
|
|
36
|
+
"dist",
|
|
37
|
+
"README.md",
|
|
38
|
+
"LICENSE"
|
|
39
|
+
],
|
|
40
|
+
"scripts": {
|
|
41
|
+
"dev": "storybook dev -p 3000 --no-open",
|
|
42
|
+
"build": "tsup",
|
|
43
|
+
"build:clean": "rm -rf dist && npm run build",
|
|
44
|
+
"start": "next start",
|
|
45
|
+
"lint": "eslint",
|
|
46
|
+
"build-storybook": "storybook build",
|
|
47
|
+
"ui-update": "node scripts/shadcn-update.js add",
|
|
48
|
+
"publish": "node scripts/publish.js"
|
|
49
|
+
},
|
|
50
|
+
"dependencies": {
|
|
51
|
+
"@base-ui/react": "^1.1.0",
|
|
52
|
+
"class-variance-authority": "^0.7.1",
|
|
53
|
+
"clsx": "^2.1.1",
|
|
54
|
+
"cmdk": "^1.1.1",
|
|
55
|
+
"date-fns": "^4.1.0",
|
|
56
|
+
"embla-carousel-react": "^8.6.0",
|
|
57
|
+
"input-otp": "^1.4.2",
|
|
58
|
+
"lucide-react": "^0.562.0",
|
|
59
|
+
"next": "16.1.2",
|
|
60
|
+
"radix-ui": "^1.4.3",
|
|
61
|
+
"react-day-picker": "^9.13.0",
|
|
62
|
+
"react-resizable-panels": "^4.4.1",
|
|
63
|
+
"recharts": "2.15.4",
|
|
64
|
+
"shadcn": "^3.7.0",
|
|
65
|
+
"sonner": "^2.0.7",
|
|
66
|
+
"tailwind-merge": "^3.4.0",
|
|
67
|
+
"tw-animate-css": "^1.4.0",
|
|
68
|
+
"vaul": "^1.1.2"
|
|
69
|
+
},
|
|
70
|
+
"devDependencies": {
|
|
71
|
+
"@chromatic-com/storybook": "^5.0.0",
|
|
72
|
+
"@eslint/js": "^9.39.2",
|
|
73
|
+
"@storybook/addon-a11y": "^10.1.11",
|
|
74
|
+
"@storybook/addon-docs": "^10.1.11",
|
|
75
|
+
"@storybook/addon-onboarding": "^10.1.11",
|
|
76
|
+
"@storybook/addon-themes": "^10.1.11",
|
|
77
|
+
"@storybook/addon-vitest": "^10.1.11",
|
|
78
|
+
"@storybook/nextjs-vite": "^10.1.11",
|
|
79
|
+
"@tailwindcss/postcss": "^4.1.18",
|
|
80
|
+
"@testing-library/jest-dom": "^6.9.1",
|
|
81
|
+
"@testing-library/react": "^16.3.1",
|
|
82
|
+
"@testing-library/user-event": "^14.6.1",
|
|
83
|
+
"@types/node": "^20.19.30",
|
|
84
|
+
"@types/react": "^19.2.8",
|
|
85
|
+
"@types/react-dom": "^19.2.3",
|
|
86
|
+
"@vitejs/plugin-react": "^5.1.2",
|
|
87
|
+
"@vitest/browser-playwright": "^4.0.17",
|
|
88
|
+
"@vitest/coverage-v8": "^4.0.17",
|
|
89
|
+
"@vueless/storybook-dark-mode": "^10.0.6",
|
|
90
|
+
"eslint": "^9.39.2",
|
|
91
|
+
"eslint-config-next": "16.1.2",
|
|
92
|
+
"eslint-plugin-react": "^7.37.5",
|
|
93
|
+
"eslint-plugin-react-hooks": "^7.0.1",
|
|
94
|
+
"eslint-plugin-storybook": "^10.1.11",
|
|
95
|
+
"eslint-plugin-tailwindcss": "npm:@hyoban/eslint-plugin-tailwindcss@^4.0.0-alpha.13",
|
|
96
|
+
"globals": "^17.0.0",
|
|
97
|
+
"jsdom": "^27.4.0",
|
|
98
|
+
"next-themes": "^0.4.6",
|
|
99
|
+
"@tanstack/react-router": "^1.150.0",
|
|
100
|
+
"playwright": "^1.57.0",
|
|
101
|
+
"storybook": "^10.1.11",
|
|
102
|
+
"tailwindcss": "^4.1.18",
|
|
103
|
+
"typescript": "^5.9.3",
|
|
104
|
+
"typescript-eslint": "^8.53.0",
|
|
105
|
+
"tsup": "^8.5.1",
|
|
106
|
+
"vite": "^7.3.1",
|
|
107
|
+
"vite-tsconfig-paths": "^6.0.4",
|
|
108
|
+
"vitest": "^4.0.17"
|
|
109
|
+
},
|
|
110
|
+
"peerDependencies": {
|
|
111
|
+
"react": "^19.2.3",
|
|
112
|
+
"react-dom": "^19.2.3",
|
|
113
|
+
"next-themes": "^0.4.6",
|
|
114
|
+
"@tanstack/react-router": "^1.150.0"
|
|
115
|
+
},
|
|
116
|
+
"peerDependenciesMeta": {
|
|
117
|
+
"next-themes": {
|
|
118
|
+
"optional": true
|
|
119
|
+
},
|
|
120
|
+
"@tanstack/react-router": {
|
|
121
|
+
"optional": true
|
|
122
|
+
}
|
|
123
|
+
},
|
|
124
|
+
"publishConfig": {
|
|
125
|
+
"access": "public",
|
|
126
|
+
"provenance": true
|
|
127
|
+
},
|
|
128
|
+
"module": "./dist/index.js",
|
|
129
|
+
"ignoreScripts": [
|
|
130
|
+
"sharp",
|
|
131
|
+
"unrs-resolver"
|
|
132
|
+
],
|
|
133
|
+
"trustedDependencies": [
|
|
134
|
+
"sharp",
|
|
135
|
+
"unrs-resolver"
|
|
136
|
+
]
|
|
137
|
+
}
|