-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.34 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.34 KB
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
{
"name": "@genon_ui/uikit",
"version": "0.0.2-rc.2",
"private": false,
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/mindsandcompany/GenUI.git"
},
"bugs": {
"url": "https://github.com/mindsandcompany/GenUI/issues"
},
"homepage": "https://github.com/mindsandcompany/GenUI#readme",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./styles/globals.css": "./src/styles/globals.css",
"./styles/typography.css": "./src/styles/typography.css",
"./styles/colors.css": "./src/styles/colors.css",
"./styles/token.css": "./src/styles/token.css",
"./tailwind-preset": "./tailwind.preset.cjs",
"./package.json": "./package.json"
},
"sideEffects": false,
"files": [
"dist",
"src/styles",
"tailwind.preset.cjs"
],
"scripts": {
"story": "storybook dev -p 6006",
"build-storybook": "storybook build",
"build": "tsup --config tsup.config.ts",
"prepare": "npm run build",
"stories:layout": "node scripts/move-stories.mjs"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"engines": {
"node": ">=18"
},
"peerDependencies": {
"react": ">=18",
"react-dom": ">=18"
},
"devDependencies": {
"@storybook/addon-a11y": "8.6.14",
"@storybook/addon-essentials": "8.6.14",
"@storybook/react": "8.6.14",
"@storybook/react-vite": "8.6.14",
"@tabler/icons-react": "^3.35.0",
"@types/react": "18",
"@types/react-dom": "18",
"autoprefixer": "^10.4.21",
"clsx": "^2.1.1",
"postcss": "^8.5.6",
"react": "18.3.1",
"react-dom": "18.3.1",
"storybook": "8.6.14",
"tailwindcss": "^3.4.17",
"tsup": "^8.0.1",
"typescript": "^5.5.0",
"vite": "^5.4.0"
},
"dependencies": {
"@radix-ui/react-avatar": "^1.1.10",
"@radix-ui/react-checkbox": "^1.3.3",
"@radix-ui/react-label": "^2.1.7",
"@radix-ui/react-radio-group": "^1.3.8",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-separator": "^1.1.7",
"@radix-ui/react-slot": "^1.2.3",
"@radix-ui/react-switch": "^1.2.6",
"@radix-ui/react-tooltip": "^1.2.8",
"class-variance-authority": "^0.7.1",
"lucide-react": "^0.539.0",
"pnpm": "^10.14.0",
"story": "^1.0.1",
"tailwind-merge": "^3.3.1",
"tailwind-variants": "^2.1.0"
}
}