-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 2.57 KB
/
Copy pathpackage.json
File metadata and controls
105 lines (105 loc) · 2.57 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
{
"name": "@waveso/ui",
"version": "0.5.0",
"description": "Wave UI component library built on Base UI and Tailwind CSS",
"type": "module",
"sideEffects": [
"*.css"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/wavedotso/wave-ui"
},
"exports": {
"./package.json": "./package.json",
"./styles.css": "./dist/styles.css",
"./*": {
"import": {
"types": "./dist/*.d.ts",
"default": "./dist/*.js"
}
}
},
"files": [
"dist",
"package.json"
],
"scripts": {
"build": "tsdown && cp src/styles.css dist/styles.css",
"dev": "tsdown --watch",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"clean": "rm -rf dist",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"prepublishOnly": "npm run build",
"changeset": "changeset",
"version": "changeset version",
"release": "npm run build && changeset publish"
},
"peerDependencies": {
"@base-ui/react": "^1.5.0",
"class-variance-authority": "^0.7.0",
"clsx": "^2.0.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"tailwind-merge": "^3.0.0"
},
"peerDependenciesMeta": {
"react-day-picker": {
"optional": true
},
"embla-carousel-react": {
"optional": true
},
"react-hook-form": {
"optional": true
},
"input-otp": {
"optional": true
},
"motion": {
"optional": true
},
"usehooks-ts": {
"optional": true
}
},
"devDependencies": {
"@base-ui/react": "^1.5.0",
"@changesets/cli": "^2.27.0",
"@storybook/addon-a11y": "~10.4.0",
"@storybook/addon-docs": "~10.4.0",
"@storybook/addon-themes": "~10.4.0",
"@storybook/react-vite": "~10.4.0",
"@tailwindcss/vite": "^4.2.1",
"@testing-library/dom": "^10.4.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/react": "^19",
"@types/react-dom": "^19",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"embla-carousel-react": "^8.6.0",
"input-otp": "^1.4.2",
"jsdom": "^29.1.1",
"motion": "^12.31.0",
"react": "^19.2.0",
"react-day-picker": "^9.13.0",
"react-dom": "^19.2.0",
"react-hook-form": "^7.66.0",
"storybook": "~10.4.0",
"tailwind-merge": "^3.4.0",
"tailwindcss": "^4.2.1",
"tsdown": "0.21.10",
"typescript": "^5.7.0",
"usehooks-ts": "^3.1.1",
"vite": "^7.3.1",
"vitest": "^4.1.7"
},
"dependencies": {
"tw-animate-css": "^1.4.0"
}
}