-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 2.78 KB
/
package.json
File metadata and controls
100 lines (100 loc) · 2.78 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
{
"name": "waveui",
"version": "0.4.0",
"type": "module",
"description": "A comprehensive React component library with modern design tokens — accessible, composable components built with TypeScript and Tailwind CSS",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/waveui/wave-ui-react.git"
},
"homepage": "https://github.com/waveui/wave-ui-react#readme",
"bugs": {
"url": "https://github.com/waveui/wave-ui-react/issues"
},
"engines": {
"node": ">=20.19.0"
},
"keywords": [
"react",
"component-library",
"waveui",
"design-system",
"typescript",
"tailwind",
"accessible"
],
"sideEffects": [
"*.css"
],
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"./styles": "./src/styles/globals.css",
"./tokens": "./src/styles/tokens.css"
},
"files": [
"dist",
"src/styles"
],
"scripts": {
"dev": "storybook dev -p 6006",
"build": "tsc --noEmit && vite build",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"typecheck": "tsc --noEmit",
"lint": "eslint src/ stories/",
"lint:fix": "eslint src/ stories/ --fix",
"format": "prettier --write \"src/**/*.{ts,tsx}\" \"stories/**/*.{ts,tsx}\"",
"format:check": "prettier --check \"src/**/*.{ts,tsx}\" \"stories/**/*.{ts,tsx}\"",
"prepublishOnly": "npm run build && npm test"
},
"peerDependencies": {
"react": "^19.0.0",
"react-dom": "^19.0.0"
},
"dependencies": {
"clsx": "^2.1.1",
"tailwind-merge": "^3.5.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@storybook/addon-a11y": "^10.2.19",
"@storybook/react": "^10.2.19",
"@storybook/react-vite": "^10.2.19",
"@tailwindcss/vite": "^4.2.1",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.6.0",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.1",
"@vitest/coverage-v8": "^4.1.0",
"ajv": "^8.18.0",
"eslint": "^10.0.3",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-react-hooks": "^7.0.1",
"jsdom": "^29.0.0",
"prettier": "^3.8.1",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"storybook": "^10.2.19",
"tailwindcss": "^4.2.1",
"typescript": "^5.7.0",
"typescript-eslint": "^8.57.1",
"vite": "^8.0.0",
"vite-plugin-dts": "^4.5.4",
"vitest": "^4.1.0",
"vitest-axe": "^0.1.0"
}
}