@react-solutions/inputs 0.1.3
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/README.md +98 -0
- package/dist/index.d.mts +1333 -0
- package/dist/index.d.ts +1333 -0
- package/dist/index.js +2 -0
- package/dist/index.js.map +1 -0
- package/dist/index.mjs +2 -0
- package/dist/index.mjs.map +1 -0
- package/package.json +111 -0
package/package.json
ADDED
|
@@ -0,0 +1,111 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@react-solutions/inputs",
|
|
3
|
+
"description": "A input library for react",
|
|
4
|
+
"version": "0.1.3",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"author": "React Solutions",
|
|
7
|
+
"main": "dist/index.js",
|
|
8
|
+
"module": "dist/index.mjs",
|
|
9
|
+
"types": "dist/index.d.ts",
|
|
10
|
+
"exports": {
|
|
11
|
+
".": {
|
|
12
|
+
"types": "./dist/index.d.ts",
|
|
13
|
+
"import": "./dist/index.mjs",
|
|
14
|
+
"require": "./dist/index.js"
|
|
15
|
+
}
|
|
16
|
+
},
|
|
17
|
+
"files": [
|
|
18
|
+
"dist",
|
|
19
|
+
"README.md"
|
|
20
|
+
],
|
|
21
|
+
"keywords": [
|
|
22
|
+
"input",
|
|
23
|
+
"react",
|
|
24
|
+
"react input",
|
|
25
|
+
"react input component",
|
|
26
|
+
"react input library",
|
|
27
|
+
"react input component library",
|
|
28
|
+
"react input library"
|
|
29
|
+
],
|
|
30
|
+
"scripts": {
|
|
31
|
+
"build": "tsup lib/index.ts --format esm,cjs --dts --sourcemap --minify --clean --tsconfig tsconfig.build.json",
|
|
32
|
+
"dev": "tsc --watch",
|
|
33
|
+
"prepublishOnly": "npm run build",
|
|
34
|
+
"lint": "eslint .",
|
|
35
|
+
"format": "prettier --write ."
|
|
36
|
+
},
|
|
37
|
+
"dependencies": {
|
|
38
|
+
"@emotion/react": ">=11.0.0",
|
|
39
|
+
"@emotion/styled": ">=11.0.0",
|
|
40
|
+
"@mui/icons-material": ">=7.0.0",
|
|
41
|
+
"@mui/material": ">=7.0.0",
|
|
42
|
+
"@mui/x-date-pickers": ">=8.0.0",
|
|
43
|
+
"date-fns": ">=4.0.0",
|
|
44
|
+
"react": ">=16.8.0",
|
|
45
|
+
"react-dom": ">=16.8.0",
|
|
46
|
+
"react-hook-form": ">=7.0.0"
|
|
47
|
+
},
|
|
48
|
+
"peerDependencies": {
|
|
49
|
+
"@emotion/react": ">=11.0.0",
|
|
50
|
+
"@emotion/styled": ">=11.0.0",
|
|
51
|
+
"@mui/icons-material": ">=7.0.0",
|
|
52
|
+
"@mui/material": ">=7.0.0",
|
|
53
|
+
"@mui/x-date-pickers": ">=8.0.0",
|
|
54
|
+
"axios": ">=1.0.0",
|
|
55
|
+
"date-fns": ">=4.0.0",
|
|
56
|
+
"react": ">=16.8.0",
|
|
57
|
+
"react-dom": ">=16.8.0",
|
|
58
|
+
"react-hook-form": ">=7.0.0"
|
|
59
|
+
},
|
|
60
|
+
"peerDependenciesMeta": {
|
|
61
|
+
"@emotion/react": {
|
|
62
|
+
"optional": false
|
|
63
|
+
},
|
|
64
|
+
"@emotion/styled": {
|
|
65
|
+
"optional": false
|
|
66
|
+
},
|
|
67
|
+
"@mui/icons-material": {
|
|
68
|
+
"optional": false
|
|
69
|
+
},
|
|
70
|
+
"@mui/material": {
|
|
71
|
+
"optional": false
|
|
72
|
+
},
|
|
73
|
+
"@mui/x-date-pickers": {
|
|
74
|
+
"optional": false
|
|
75
|
+
},
|
|
76
|
+
"axios": {
|
|
77
|
+
"optional": false
|
|
78
|
+
},
|
|
79
|
+
"date-fns": {
|
|
80
|
+
"optional": false
|
|
81
|
+
},
|
|
82
|
+
"react": {
|
|
83
|
+
"optional": false
|
|
84
|
+
},
|
|
85
|
+
"react-dom": {
|
|
86
|
+
"optional": false
|
|
87
|
+
},
|
|
88
|
+
"react-hook-form": {
|
|
89
|
+
"optional": false
|
|
90
|
+
}
|
|
91
|
+
},
|
|
92
|
+
"devDependencies": {
|
|
93
|
+
"@eslint/js": "^9.36.0",
|
|
94
|
+
"@types/node": "^24.6.0",
|
|
95
|
+
"@types/react": "^19.1.16",
|
|
96
|
+
"@types/react-dom": "^19.1.9",
|
|
97
|
+
"eslint": "^9.36.0",
|
|
98
|
+
"eslint-plugin-react-hooks": "^5.2.0",
|
|
99
|
+
"eslint-plugin-react-refresh": "^0.4.22",
|
|
100
|
+
"globals": "^16.4.0",
|
|
101
|
+
"prettier": "^3.0.0",
|
|
102
|
+
"react": "^19.2.0",
|
|
103
|
+
"react-dom": "^19.2.0",
|
|
104
|
+
"tsup": "^8.0.0",
|
|
105
|
+
"typescript": "~5.9.3",
|
|
106
|
+
"typescript-eslint": "^8.45.0"
|
|
107
|
+
},
|
|
108
|
+
"engines": {
|
|
109
|
+
"node": ">=16.0.0"
|
|
110
|
+
}
|
|
111
|
+
}
|