-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.14 KB
/
Copy pathpackage.json
File metadata and controls
80 lines (80 loc) · 2.14 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
{
"name": "tiny-ui",
"private": false,
"version": "0.0.0",
"type": "module",
"main": "./dist/tiny-ui.cjs.js",
"module": "./dist/tiny-ui.es.js",
"exports": {
".": {
"import": "./dist/tiny-ui.es.js",
"require": "./dist/tiny-ui.cjs.js",
"types": "./dist/index.d.ts"
},
"./tiny-ui.css": "./dist/tiny-ui.css"
},
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"dev": "vite",
"build": "vite build",
"lint": "eslint .",
"preview": "vite preview",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"peerDependencies": {
"react": "^19.0.0",
"react-dom": "^19.0.0"
},
"devDependencies": {
"@carbon/icons-react": "^11.57.0",
"@chromatic-com/storybook": "^3.2.6",
"@eslint/js": "^9.21.0",
"@storybook/addon-a11y": "^8.6.9",
"@storybook/addon-essentials": "^8.6.9",
"@storybook/addon-onboarding": "^8.6.9",
"@storybook/blocks": "^8.6.9",
"@storybook/builder-vite": "^8.6.9",
"@storybook/experimental-addon-test": "^8.6.9",
"@storybook/react": "^8.6.9",
"@storybook/react-vite": "^8.6.9",
"@storybook/test": "^8.6.9",
"@tailwindcss/vite": "^4.0.16",
"@types/react": "^19.0.12",
"@types/react-dom": "^19.0.4",
"@vitejs/plugin-react": "^4.3.4",
"@vitest/browser": "^3.0.9",
"@vitest/coverage-v8": "^3.0.9",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"dts-bundle-generator": "^9.5.1",
"eslint": "^9.21.0",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-react-refresh": "^0.4.19",
"eslint-plugin-storybook": "^0.12.0",
"globals": "^15.15.0",
"lucide-react": "^0.484.0",
"playwright": "^1.51.1",
"prop-types": "^15.8.1",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"storybook": "^8.6.9",
"tailwind-merge": "^3.0.2",
"tailwindcss": "^4.0.16",
"tw-animate-css": "^1.2.4",
"vite": "^6.2.0",
"vite-plugin-dts": "^4.5.3",
"vitest": "^3.0.9"
},
"eslintConfig": {
"extends": [
"plugin:storybook/recommended"
]
},
"dependencies": {
"@radix-ui/react-accordion": "^1.2.3"
}
}