@suribef/suri-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 +329 -0
- package/dist/components/Badge/Badge.d.ts +10 -0
- package/dist/components/Badge/index.d.ts +2 -0
- package/dist/components/Button/Button.d.ts +10 -0
- package/dist/components/Button/index.d.ts +2 -0
- package/dist/components/Card/Card.d.ts +34 -0
- package/dist/components/Card/index.d.ts +2 -0
- package/dist/components/Divider/Divider.d.ts +10 -0
- package/dist/components/Divider/index.d.ts +2 -0
- package/dist/components/Input/Input.d.ts +8 -0
- package/dist/components/Input/index.d.ts +2 -0
- package/dist/components/Select/Select.d.ts +20 -0
- package/dist/components/Select/index.d.ts +2 -0
- package/dist/components/Spinner/Spinner.d.ts +10 -0
- package/dist/components/Spinner/index.d.ts +2 -0
- package/dist/components/Stack/Stack.d.ts +15 -0
- package/dist/components/Stack/index.d.ts +2 -0
- package/dist/components/Textarea/Textarea.d.ts +10 -0
- package/dist/components/Textarea/index.d.ts +2 -0
- package/dist/index.d.ts +19 -0
- package/dist/suri-ui.cjs +6 -0
- package/dist/suri-ui.css +2 -0
- package/dist/suri-ui.js +612 -0
- package/dist/utils/cn.d.ts +1 -0
- package/dist/utils/useCombinedRef.d.ts +2 -0
- package/package.json +107 -0
package/package.json
ADDED
|
@@ -0,0 +1,107 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@suribef/suri-ui",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "React component library by Sergio Uribe Frenkel",
|
|
5
|
+
"author": "Sergio Uribe Frenkel (@Suribef)",
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"homepage": "https://suribef.github.io/suri-ui",
|
|
8
|
+
"repository": {
|
|
9
|
+
"type": "git",
|
|
10
|
+
"url": "git+https://github.com/Suribef/suri-ui.git"
|
|
11
|
+
},
|
|
12
|
+
"bugs": {
|
|
13
|
+
"url": "https://github.com/Suribef/suri-ui/issues"
|
|
14
|
+
},
|
|
15
|
+
"type": "module",
|
|
16
|
+
"main": "./dist/suri-ui.cjs",
|
|
17
|
+
"module": "./dist/suri-ui.js",
|
|
18
|
+
"types": "./dist/index.d.ts",
|
|
19
|
+
"exports": {
|
|
20
|
+
".": {
|
|
21
|
+
"import": {
|
|
22
|
+
"types": "./dist/index.d.ts",
|
|
23
|
+
"default": "./dist/suri-ui.js"
|
|
24
|
+
},
|
|
25
|
+
"require": {
|
|
26
|
+
"types": "./dist/index.d.ts",
|
|
27
|
+
"default": "./dist/suri-ui.cjs"
|
|
28
|
+
}
|
|
29
|
+
},
|
|
30
|
+
"./styles": "./dist/suri-ui.css"
|
|
31
|
+
},
|
|
32
|
+
"files": [
|
|
33
|
+
"dist/components",
|
|
34
|
+
"dist/utils",
|
|
35
|
+
"dist/index.d.ts",
|
|
36
|
+
"dist/suri-ui.js",
|
|
37
|
+
"dist/suri-ui.cjs",
|
|
38
|
+
"dist/suri-ui.css"
|
|
39
|
+
],
|
|
40
|
+
"sideEffects": [
|
|
41
|
+
"**/*.css"
|
|
42
|
+
],
|
|
43
|
+
"publishConfig": {
|
|
44
|
+
"access": "public"
|
|
45
|
+
},
|
|
46
|
+
"peerDependencies": {
|
|
47
|
+
"react": ">=18",
|
|
48
|
+
"react-dom": ">=18"
|
|
49
|
+
},
|
|
50
|
+
"scripts": {
|
|
51
|
+
"build": "vite build",
|
|
52
|
+
"test": "vitest run",
|
|
53
|
+
"test:watch": "vitest",
|
|
54
|
+
"test:ui": "vitest --ui",
|
|
55
|
+
"lint": "eslint src --ext .ts,.tsx",
|
|
56
|
+
"storybook": "storybook dev -p 6006",
|
|
57
|
+
"build-storybook": "storybook build"
|
|
58
|
+
},
|
|
59
|
+
"keywords": [
|
|
60
|
+
"react",
|
|
61
|
+
"components",
|
|
62
|
+
"typescript",
|
|
63
|
+
"ui",
|
|
64
|
+
"component-library"
|
|
65
|
+
],
|
|
66
|
+
"devDependencies": {
|
|
67
|
+
"@chromatic-com/storybook": "^5.2.1",
|
|
68
|
+
"@eslint/js": "^9.39.4",
|
|
69
|
+
"@rollup/plugin-replace": "^6.0.3",
|
|
70
|
+
"@storybook/addon-a11y": "^10.4.6",
|
|
71
|
+
"@storybook/addon-docs": "^10.4.6",
|
|
72
|
+
"@storybook/addon-mcp": "^0.6.0",
|
|
73
|
+
"@storybook/addon-vitest": "^10.4.6",
|
|
74
|
+
"@storybook/react-vite": "^10.4.6",
|
|
75
|
+
"@testing-library/jest-dom": "^6.9.1",
|
|
76
|
+
"@testing-library/react": "^16.3.2",
|
|
77
|
+
"@testing-library/user-event": "^14.6.1",
|
|
78
|
+
"@types/react": "^19.2.17",
|
|
79
|
+
"@types/react-dom": "^19.2.3",
|
|
80
|
+
"@typescript-eslint/eslint-plugin": "^8.62.0",
|
|
81
|
+
"@typescript-eslint/parser": "^8.62.0",
|
|
82
|
+
"@vitejs/plugin-react": "^6.0.3",
|
|
83
|
+
"@vitest/browser-playwright": "^4.1.9",
|
|
84
|
+
"@vitest/coverage-v8": "^4.1.9",
|
|
85
|
+
"@vitest/ui": "^4.1.9",
|
|
86
|
+
"eslint": "^9.39.4",
|
|
87
|
+
"eslint-plugin-react": "^7.37.5",
|
|
88
|
+
"eslint-plugin-react-hooks": "^7.1.1",
|
|
89
|
+
"eslint-plugin-storybook": "^10.4.6",
|
|
90
|
+
"jsdom": "^29.1.1",
|
|
91
|
+
"playwright": "^1.61.1",
|
|
92
|
+
"prettier": "^3.8.4",
|
|
93
|
+
"react": "^19.2.7",
|
|
94
|
+
"react-dom": "^19.2.7",
|
|
95
|
+
"storybook": "^10.4.6",
|
|
96
|
+
"typescript": "^6.0.3",
|
|
97
|
+
"typescript-eslint": "^8.62.0",
|
|
98
|
+
"vite": "^8.1.0",
|
|
99
|
+
"vite-plugin-dts": "^5.0.3",
|
|
100
|
+
"vitest": "^4.1.9"
|
|
101
|
+
},
|
|
102
|
+
"eslintConfig": {
|
|
103
|
+
"extends": [
|
|
104
|
+
"plugin:storybook/recommended"
|
|
105
|
+
]
|
|
106
|
+
}
|
|
107
|
+
}
|