@firecms/formex 3.0.0-canary.4 → 3.0.0-canary.41
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 +2 -2
- package/package.json +11 -12
package/README.md
CHANGED
@@ -14,11 +14,11 @@ Formex is a lightweight, flexible library designed to simplify form handling wit
|
|
14
14
|
To install Formex, you can use either npm or yarn:
|
15
15
|
|
16
16
|
```sh
|
17
|
-
npm install
|
17
|
+
npm install @firecms/formex
|
18
18
|
|
19
19
|
# or if you're using yarn
|
20
20
|
|
21
|
-
yarn add
|
21
|
+
yarn add @firecms/formex
|
22
22
|
```
|
23
23
|
|
24
24
|
## Quick Start
|
package/package.json
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
{
|
2
2
|
"name": "@firecms/formex",
|
3
3
|
"type": "module",
|
4
|
-
"version": "3.0.0-canary.
|
4
|
+
"version": "3.0.0-canary.41",
|
5
5
|
"publishConfig": {
|
6
6
|
"access": "public"
|
7
7
|
},
|
@@ -24,7 +24,6 @@
|
|
24
24
|
},
|
25
25
|
"./package.json": "./package.json"
|
26
26
|
},
|
27
|
-
"packageManager": "yarn@4.1.0",
|
28
27
|
"main": "./dist/index.umd.js",
|
29
28
|
"module": "./dist/index.es.js",
|
30
29
|
"types": "dist/index.d.ts",
|
@@ -38,19 +37,19 @@
|
|
38
37
|
"react-fast-compare": "^3.2.2"
|
39
38
|
},
|
40
39
|
"devDependencies": {
|
41
|
-
"@types/node": "^20.11.
|
42
|
-
"@types/react": "^18.2.
|
43
|
-
"@types/react-dom": "^18.2.
|
44
|
-
"@typescript-eslint/parser": "^
|
45
|
-
"eslint": "^8.
|
40
|
+
"@types/node": "^20.11.30",
|
41
|
+
"@types/react": "^18.2.67",
|
42
|
+
"@types/react-dom": "^18.2.22",
|
43
|
+
"@typescript-eslint/parser": "^7.3.1",
|
44
|
+
"eslint": "^8.57.0",
|
46
45
|
"eslint-config-standard": "^17.1.0",
|
47
46
|
"eslint-plugin-import": "^2.29.1",
|
48
|
-
"eslint-plugin-n": "^
|
47
|
+
"eslint-plugin-n": "^16.6.2",
|
49
48
|
"eslint-plugin-promise": "^6.1.1",
|
50
|
-
"eslint-plugin-react": "^7.
|
49
|
+
"eslint-plugin-react": "^7.34.1",
|
51
50
|
"eslint-plugin-react-hooks": "^4.6.0",
|
52
|
-
"typescript": "^5.
|
53
|
-
"vite": "^5.
|
51
|
+
"typescript": "^5.4.2",
|
52
|
+
"vite": "^5.2.3"
|
54
53
|
},
|
55
54
|
"scripts": {
|
56
55
|
"dev": "vite",
|
@@ -69,5 +68,5 @@
|
|
69
68
|
"react-app/jest"
|
70
69
|
]
|
71
70
|
},
|
72
|
-
"gitHead": "
|
71
|
+
"gitHead": "d1ffa185f8930bab4e7b9941ba551c53f947aa1f"
|
73
72
|
}
|