@4players/odin-common 7.3.0 → 7.3.2
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/package.json +14 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@4players/odin-common",
|
|
3
|
-
"version": "7.3.
|
|
3
|
+
"version": "7.3.2",
|
|
4
4
|
"description": "A collection of commonly used type definitions and utility functions across ODIN web projects",
|
|
5
5
|
"author": "Josho Bleicker <josho.bleicker@4players.io> (https://www.4players.io)",
|
|
6
6
|
"homepage": "https://www.4players.io",
|
|
@@ -14,9 +14,19 @@
|
|
|
14
14
|
],
|
|
15
15
|
"private": false,
|
|
16
16
|
"license": "ISC",
|
|
17
|
-
"
|
|
18
|
-
"
|
|
19
|
-
|
|
17
|
+
"type": "module",
|
|
18
|
+
"exports": {
|
|
19
|
+
".": {
|
|
20
|
+
"main": "./mod.js",
|
|
21
|
+
"module": "./mod.mjs",
|
|
22
|
+
"types": "./mod.d.ts"
|
|
23
|
+
},
|
|
24
|
+
"./zod": {
|
|
25
|
+
"main": "./zod/mod.js",
|
|
26
|
+
"module": "./zod/mod.mjs",
|
|
27
|
+
"types": "./zod/mod.d.ts"
|
|
28
|
+
}
|
|
29
|
+
},
|
|
20
30
|
"dependencies": {
|
|
21
31
|
"zod": "~3.25.0"
|
|
22
32
|
}
|