@arturoliveira/vesta-ui 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +158 -0
- package/dist/index.cjs +2 -0
- package/dist/index.cjs.map +1 -0
- package/dist/index.mjs +4731 -0
- package/dist/index.mjs.map +1 -0
- package/package.json +82 -0
package/package.json
ADDED
|
@@ -0,0 +1,82 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@arturoliveira/vesta-ui",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "A modern React component library built with Ark UI and Tailwind CSS",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "./dist/index.cjs",
|
|
7
|
+
"module": "./dist/index.mjs",
|
|
8
|
+
"types": "./dist/index.d.ts",
|
|
9
|
+
"exports": {
|
|
10
|
+
".": {
|
|
11
|
+
"types": "./dist/index.d.ts",
|
|
12
|
+
"import": "./dist/index.mjs",
|
|
13
|
+
"require": "./dist/index.cjs"
|
|
14
|
+
},
|
|
15
|
+
"./styles": "./dist/styles/index.css"
|
|
16
|
+
},
|
|
17
|
+
"files": [
|
|
18
|
+
"dist",
|
|
19
|
+
"README.md",
|
|
20
|
+
"LICENSE"
|
|
21
|
+
],
|
|
22
|
+
"keywords": [
|
|
23
|
+
"react",
|
|
24
|
+
"components",
|
|
25
|
+
"ui",
|
|
26
|
+
"ark-ui",
|
|
27
|
+
"tailwind",
|
|
28
|
+
"typescript",
|
|
29
|
+
"vesta"
|
|
30
|
+
],
|
|
31
|
+
"repository": {
|
|
32
|
+
"type": "git",
|
|
33
|
+
"url": "git+https://github.com/arturgomes/vesta-ui.git"
|
|
34
|
+
},
|
|
35
|
+
"bugs": {
|
|
36
|
+
"url": "https://github.com/arturgomes/vesta-ui/issues"
|
|
37
|
+
},
|
|
38
|
+
"homepage": "https://github.com/arturgomes/vesta-ui#readme",
|
|
39
|
+
"author": "Artur Gomes",
|
|
40
|
+
"license": "MIT",
|
|
41
|
+
"scripts": {
|
|
42
|
+
"dev": "storybook dev -p 6006",
|
|
43
|
+
"build": "tsc && vite build",
|
|
44
|
+
"build:storybook": "storybook build",
|
|
45
|
+
"clean": "rm -rf dist storybook-static",
|
|
46
|
+
"storybook": "storybook dev -p 6006"
|
|
47
|
+
},
|
|
48
|
+
"dependencies": {
|
|
49
|
+
"@ark-ui/react": "^4.2.3",
|
|
50
|
+
"@reduxjs/toolkit": "^2.6.0",
|
|
51
|
+
"clsx": "^2.1.1",
|
|
52
|
+
"lucide-react": "^0.555.0",
|
|
53
|
+
"react": "^19.2.0",
|
|
54
|
+
"react-dom": "^19.2.0",
|
|
55
|
+
"react-redux": "^9.2.0",
|
|
56
|
+
"tailwind-merge": "^2.6.0"
|
|
57
|
+
},
|
|
58
|
+
"devDependencies": {
|
|
59
|
+
"@chromatic-com/storybook": "^3.2.2",
|
|
60
|
+
"@storybook/addon-essentials": "^8.6.14",
|
|
61
|
+
"@storybook/addon-interactions": "^8.6.14",
|
|
62
|
+
"@storybook/addon-links": "^8.6.14",
|
|
63
|
+
"@storybook/blocks": "^8.6.14",
|
|
64
|
+
"@storybook/react": "^8.6.14",
|
|
65
|
+
"@storybook/react-vite": "^8.6.14",
|
|
66
|
+
"@storybook/test": "^8.6.14",
|
|
67
|
+
"@types/node": "^24.10.1",
|
|
68
|
+
"@types/react": "^19.2.5",
|
|
69
|
+
"@types/react-dom": "^19.2.3",
|
|
70
|
+
"@vitejs/plugin-react": "^5.1.1",
|
|
71
|
+
"autoprefixer": "^10.4.20",
|
|
72
|
+
"postcss": "^8.4.49",
|
|
73
|
+
"storybook": "^8.6.14",
|
|
74
|
+
"tailwindcss": "^3.4.17",
|
|
75
|
+
"typescript": "~5.9.3",
|
|
76
|
+
"vite": "^6.0.7"
|
|
77
|
+
},
|
|
78
|
+
"peerDependencies": {
|
|
79
|
+
"react": "^19.2.0",
|
|
80
|
+
"react-dom": "^19.2.0"
|
|
81
|
+
}
|
|
82
|
+
}
|