-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
106 lines (106 loc) · 2.69 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
{
"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": "pnpm build:core && turbo build --parallel --filter=!*core --filter=!*template",
"build:core": "turbo run build --filter=*core",
"format": "prettier --write .",
"format:check": "prettier --check .",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"clean": "turbo run clean --parallel",
"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 <hernanvid123@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/halvaradop/ui/issues"
},
"homepage": "https://github.com/halvaradop/ui#readme",
"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": "18.3.1",
"react-dom": "18.3.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"
},
"packageManager": "pnpm@9.0.0-rc.0",
"engines": {
"node": ">=18"
},
"prettier": {
"semi": false,
"tabWidth": 4,
"printWidth": 120,
"trailingComma": "es5",
"overrides": [
{
"files": [
"*.json",
"*.md",
"*.yaml",
"*.yml"
],
"options": {
"tabWidth": 2
}
},
{
"files": [
"**/*.tsx"
],
"options": {
"printWidth": 300
}
}
]
}
}