@semihbou/zod-i18n-map 0.0.2 → 0.0.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.
@@ -8,11 +8,8 @@
8
8
  "invalid_union": "輸入格式錯誤",
9
9
  "invalid_union_discriminator": "無效的識別符,請輸入 {{- options}}",
10
10
  "invalid_enum_value": "無效的 '{{received}}' 值,請輸入 {{- options}}",
11
- "invalid_arguments": "參數錯誤",
12
- "invalid_return_type": "錯誤的回傳值類型",
13
11
  "invalid_date": "錯誤的日期",
14
12
  "custom": "格式錯誤",
15
- "invalid_intersection_types": "交集類型無法合併",
16
13
  "not_multiple_of": "必須是 {{multipleOf}} 的倍數",
17
14
  "not_finite": "不能為無限值",
18
15
  "invalid_string": {
@@ -85,7 +82,7 @@
85
82
  "number": "數字",
86
83
  "string": "字串",
87
84
  "nan": "NaN",
88
- "integer": "整數",
85
+ "int": "整數",
89
86
  "float": "浮點數",
90
87
  "boolean": "布林值",
91
88
  "date": "日期",
@@ -102,4 +99,4 @@
102
99
  "map": "Map",
103
100
  "set": "Set"
104
101
  }
105
- }
102
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@semihbou/zod-i18n-map",
3
- "version": "0.0.2",
3
+ "version": "0.0.3",
4
4
  "description": "A library for localizing zod error messages.",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
@@ -23,7 +23,7 @@
23
23
  },
24
24
  "peerDependencies": {
25
25
  "i18next": ">=21.3.0",
26
- "zod": ">=4.0.0"
26
+ "zod": ">=4.1.12"
27
27
  },
28
28
  "devDependencies": {
29
29
  "@tsconfig/node16": "^1.0.3",
@@ -33,9 +33,9 @@
33
33
  "i18next": "^22.4.9",
34
34
  "rimraf": "^5.0.0",
35
35
  "tsup": "8.5.0",
36
- "typescript": "^4.9.5",
36
+ "typescript": "^5.7.3",
37
37
  "vite": "7.2.2",
38
38
  "vitest": "^4.0.8",
39
- "zod": "^4.0.0"
39
+ "zod": "^4.1.12"
40
40
  }
41
41
  }