-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
110 lines (110 loc) · 3.1 KB
/
package.json
File metadata and controls
110 lines (110 loc) · 3.1 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
{
"name": "@wtasnorg/ui",
"version": "0.0.1",
"private": false,
"description": "A premium React component library built with Tailwind CSS v4 and Radix UI.",
"author": "wtasnorg",
"license": "MIT",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/wtasg/ui.git"
},
"homepage": "https://github.com/wtasg/ui#readme",
"bugs": {
"url": "https://github.com/wtasg/ui/issues"
},
"keywords": [
"react",
"ui",
"components",
"tailwindcss",
"radix-ui",
"design-system"
],
"publishConfig": {
"access": "public"
},
"sideEffects": [
"**/*.css"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./styles.css": "./dist/index.css"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsup --config src/packages/ui/tsup.config.ts",
"dev": "vite serve src/apps/showcase --config src/apps/showcase/vite.config.ts",
"typecheck": "tsc --noEmit -p src/packages/ui/tsconfig.json",
"test": "vitest run",
"test:unit": "vitest run --config vitest.config.ts",
"test:unit:watch": "vitest --config vitest.config.ts",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:a11y": "playwright test tests/e2e/accessibility.test.ts",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"prepublishOnly": "npm run typecheck && npm run test && npm run build"
},
"dependencies": {
"@radix-ui/react-accordion": "^1.2.12",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-navigation-menu": "^1.2.14",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-tabs": "^1.1.13",
"@radix-ui/react-toast": "^1.2.15",
"@radix-ui/react-tooltip": "^1.2.8",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"tailwind-merge": "^3.5.0"
},
"peerDependencies": {
"react": "^19.0.0",
"react-dom": "^19.0.0",
"tailwindcss": ">=4.0.0"
},
"devDependencies": {
"@axe-core/playwright": "^4.11.1",
"@chromatic-com/storybook": "^5.0.1",
"@playwright/test": "^1.58.2",
"@storybook/addon-a11y": "^10.2.17",
"@storybook/addon-docs": "^10.2.17",
"@storybook/addon-onboarding": "^10.2.17",
"@storybook/addon-vitest": "^10.2.17",
"@storybook/react-vite": "^10.2.17",
"@tailwindcss/postcss": "^4.2.1",
"@tailwindcss/vite": "^4.2.1",
"@testing-library/react": "^16.3.2",
"@types/node": "^25.5.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^4.7.0",
"@vitest/browser": "^3.2.4",
"@vitest/coverage-v8": "^3.2.4",
"jsdom": "^26.1.0",
"playwright": "^1.58.2",
"postcss": "^8.5.8",
"storybook": "^10.2.17",
"tailwindcss": "^4.1.4",
"tsup": "^8.5.1",
"typescript": "^5.9.3",
"vite": "^6.4.1",
"vitest": "^3.2.4"
},
"engines": {
"node": ">=20"
}
}