@juantroconisf/lib 4.1.0 → 4.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 +3 -3
- package/package.json +14 -8
- package/.vscode/settings.json +0 -15
package/README.md
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
# Changesets
|
|
2
|
-
|
|
3
|
-
Nothing to see here...
|
|
1
|
+
# Changesets
|
|
2
|
+
|
|
3
|
+
Nothing to see here...
|
package/package.json
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@juantroconisf/lib",
|
|
3
|
-
"version": "4.1.
|
|
3
|
+
"version": "4.1.3",
|
|
4
4
|
"description": "A form validation library for HeroUI.",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.mjs",
|
|
7
7
|
"types": "dist/index.d.ts",
|
|
8
|
-
"
|
|
9
|
-
"
|
|
10
|
-
"
|
|
11
|
-
|
|
8
|
+
"files": [
|
|
9
|
+
"dist",
|
|
10
|
+
"README.md"
|
|
11
|
+
],
|
|
12
12
|
"author": "Juan T",
|
|
13
13
|
"license": "ISC",
|
|
14
14
|
"bugs": {
|
|
@@ -21,10 +21,16 @@
|
|
|
21
21
|
"@react-types/shared": "^3.32.1",
|
|
22
22
|
"@types/node": "^24.7.1",
|
|
23
23
|
"@types/react": "^19.2.2",
|
|
24
|
+
"react": "^19.2.0",
|
|
24
25
|
"tsup": "^8.5.0",
|
|
25
26
|
"typescript": "^5.9.3"
|
|
26
27
|
},
|
|
27
|
-
"
|
|
28
|
-
"react": "
|
|
28
|
+
"peerDependencies": {
|
|
29
|
+
"@heroui/react": ">=2.0.0",
|
|
30
|
+
"react": ">=18.0.0"
|
|
31
|
+
},
|
|
32
|
+
"scripts": {
|
|
33
|
+
"build": "tsup src/index.ts --format cjs,esm --dts",
|
|
34
|
+
"lint": "tsc"
|
|
29
35
|
}
|
|
30
|
-
}
|
|
36
|
+
}
|
package/.vscode/settings.json
DELETED
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"editor.defaultFormatter": "esbenp.prettier-vscode",
|
|
3
|
-
"editor.formatOnSave": true,
|
|
4
|
-
"editor.suggest.localityBonus": true,
|
|
5
|
-
"editor.snippetSuggestions": "inline",
|
|
6
|
-
"editor.suggestSelection": "first",
|
|
7
|
-
"typescript.disableAutomaticTypeAcquisition": false,
|
|
8
|
-
"emmet.includeLanguages": {
|
|
9
|
-
"javascript": "javascriptreact"
|
|
10
|
-
},
|
|
11
|
-
"javascript.suggest.autoImports": true,
|
|
12
|
-
"javascript.preferences.importModuleSpecifier": "relative",
|
|
13
|
-
"typescript.suggest.paths": true,
|
|
14
|
-
"javascript.suggest.paths": true
|
|
15
|
-
}
|