-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
111 lines (111 loc) · 2.79 KB
/
package.json
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
{
"name": "@halvaradop/ui",
"version": "0.1.0",
"private": true,
"type": "module",
"description": "A comprehensive UI library for React, built with Tailwind CSS and CVA (Class Variance Authority). It provides reusable components and supports JSX syntax.",
"scripts": {
"dev": "turbo run dev --parallel",
"build": "turbo run build --filter=*ui-core && turbo build",
"format": "prettier --write .",
"format:check": "prettier --check .",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"clean:build": "turbo run clean:build --parallel",
"clean:modules": "turbo run clean:modules --parallel"
},
"repository": {
"type": "git",
"url": "git+https://github.com/halvaradop/ui.git"
},
"keywords": [
"ui",
"components",
"react",
"jsx",
"reusable",
"ui",
"library",
"ui",
"components",
"tailwindcss",
"react",
"cva",
"class-variance-authority"
],
"author": "Hernan Alvarado <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/halvaradop/ui/issues"
},
"homepage": "https://github.com/halvaradop/ui#readme",
"dependencies": {
"@types/react": "npm:types-react@rc",
"@types/react-dom": "npm:types-react-dom@rc"
},
"devDependencies": {
"@chromatic-com/storybook": "1.9.0",
"@storybook/addon-essentials": "^8.4.5",
"@storybook/addon-interactions": "^8.4.5",
"@storybook/addon-links": "^8.4.5",
"@storybook/addon-onboarding": "^8.4.5",
"@storybook/addon-storysource": "^8.4.5",
"@storybook/blocks": "^8.4.5",
"@storybook/react": "^8.4.5",
"@storybook/react-vite": "^8.4.5",
"@storybook/test": "^8.4.5",
"@types/node": "^22.10.0",
"@types/react": "^18.3.5",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react-swc": "^3.7.2",
"autoprefixer": "^10.4.20",
"postcss": "^8.4.49",
"prettier": "^3.4.1",
"react": "19.0.0-rc.1",
"react-dom": "19.0.0-rc.1",
"storybook": "^8.4.5",
"tailwindcss": "^3.4.15",
"tsup": "^8.3.5",
"turbo": "^2.3.2",
"typescript": "^5.7.2",
"vite": "^5.4.11"
},
"peerDependencies": {
"react": ">=18",
"react-dom": ">=18"
},
"overrides": {
"@types/react": "npm:types-react@rc",
"@types/react-dom": "npm:types-react-dom@rc"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=18"
},
"prettier": {
"semi": false,
"tabWidth": 4,
"printWidth": 120,
"trailingComma": "es5",
"overrides": [
{
"files": [
"**/*.json",
"README.md",
"**/*.yaml"
],
"options": {
"tabWidth": 2
}
},
{
"files": [
"**/*.tsx"
],
"options": {
"printWidth": 300
}
}
]
}
}