forked from GeekyAnts/geeklego
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
148 lines (148 loc) · 4.65 KB
/
Copy pathpackage.json
File metadata and controls
148 lines (148 loc) · 4.65 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
{
"name": "@geeklego/ui",
"version": "0.1.0",
"private": false,
"type": "module",
"license": "MIT",
"description": "A React component library built on a design-system-first architecture: 2-tier tokens (primitives → standard ShadCN/Tailwind semantics) + Radix UI components, styled with Tailwind CSS v4.",
"keywords": [
"react",
"component-library",
"design-system",
"tailwind",
"typescript",
"ui"
],
"homepage": "https://geeklego.dev",
"repository": {
"type": "git",
"url": "https://github.com/geeklego/geeklego.git"
},
"bugs": {
"url": "https://github.com/geeklego/geeklego/issues"
},
"author": "Geeklego",
"engines": {
"node": ">=20.0.0",
"pnpm": ">=9.0.0"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./styles": {
"types": "./dist/styles.d.ts",
"style": "./dist/geeklego.css",
"import": "./dist/geeklego.css",
"require": "./dist/geeklego.css"
},
"./styles-source": {
"style": "./design-system/v2/index.css",
"import": "./design-system/v2/index.css",
"require": "./design-system/v2/index.css"
}
},
"scripts": {
"preinstall": "only-allow pnpm",
"dev": "vite --config vite.config.mts app",
"dev:all": "pnpm run dev & pnpm run storybook & wait",
"build": "tsup components/index.ts --format esm,cjs --dts && pnpm run build:css",
"storybook": "storybook dev -p 6006",
"lint": "eslint --max-warnings 0",
"build:css": "tailwindcss -i ./design-system/v2/index.css -o ./dist/geeklego.css --minify",
"sync-build": "npm run build",
"validate-tokens": "npx tsx scripts/validate-tokens.ts",
"export-ir": "npx tsx scripts/export-ir.ts",
"export-design-md": "npx tsx scripts/export-design-md.ts",
"build-storybook": "storybook build",
"lint-css": "stylelint --config .stylelintrc.mjs \"design-system/v2/**/*.css\""
},
"peerDependencies": {
"lucide-react": ">=0.400.0 || >=1.0.0",
"react": "^19.0.0",
"react-dom": "^19.0.0"
},
"devDependencies": {
"@storybook/addon-a11y": "^10.2.19",
"@storybook/addon-docs": "^10.2.19",
"@storybook/react-vite": "^10.2.19",
"@tailwindcss/cli": "^4.2.4",
"@tailwindcss/vite": "^4.2.1",
"@types/diff": "^7.0.2",
"@types/node": "^22.0.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@vitejs/plugin-react": "^4.3.4",
"@vitest/browser-playwright": "^4.1.0",
"@vitest/coverage-v8": "^4.1.0",
"diff": "^9.0.0",
"eslint": "^9.39.4",
"eslint-plugin-react-hooks": "^7.1.1",
"only-allow": "^1.2.2",
"playwright": "^1.58.2",
"storybook": "^10.2.19",
"stylelint": "^16.0.0",
"tailwindcss": "^4.2.1",
"tsup": "^8.5.1",
"typescript": "^5.7.0",
"typescript-eslint": "^8.61.1",
"vite": "^6.0.0",
"vitest": "^4.1.0"
},
"browserslist": [
"last 2 Chrome versions",
"last 2 Firefox versions",
"last 2 Safari versions",
"last 2 Edge versions",
"not dead"
],
"packageManager": "pnpm@9.15.0",
"pnpm": {
"overrides": {
"postcss@<8.5.10": ">=8.5.10",
"fast-uri@<3.1.2": ">=3.1.2",
"vite@<6.4.2": ">=6.4.2"
}
},
"dependencies": {
"@radix-ui/react-accordion": "^1.2.14",
"@radix-ui/react-alert-dialog": "^1.1.17",
"@radix-ui/react-aspect-ratio": "^1.1.10",
"@radix-ui/react-avatar": "^1.2.0",
"@radix-ui/react-checkbox": "^1.3.5",
"@radix-ui/react-collapsible": "^1.1.14",
"@radix-ui/react-context-menu": "^2.3.1",
"@radix-ui/react-dialog": "^1.1.17",
"@radix-ui/react-dropdown-menu": "^2.1.18",
"@radix-ui/react-hover-card": "^1.1.17",
"@radix-ui/react-label": "^2.1.10",
"@radix-ui/react-menubar": "^1.1.18",
"@radix-ui/react-navigation-menu": "^1.2.16",
"@radix-ui/react-popover": "^1.1.17",
"@radix-ui/react-progress": "^1.1.10",
"@radix-ui/react-scroll-area": "^1.2.12",
"@radix-ui/react-select": "^2.3.1",
"@radix-ui/react-separator": "^1.1.10",
"@radix-ui/react-slot": "^1.3.0",
"@radix-ui/react-switch": "^1.3.1",
"@radix-ui/react-tabs": "^1.1.15",
"@radix-ui/react-toggle": "^1.1.12",
"@radix-ui/react-toggle-group": "^1.1.13",
"@radix-ui/react-tooltip": "^1.2.10",
"@tanstack/react-table": "^8.21.3",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"embla-carousel-react": "^8.6.0",
"input-otp": "^1.4.2",
"react-day-picker": "^10.0.1",
"react-hook-form": "^7.80.0",
"react-resizable-panels": "^4.11.2",
"recharts": "^3.9.0",
"sonner": "^2.0.7",
"tailwind-merge": "^3.6.0",
"vaul": "^1.1.2"
}
}