almighty-tool 0.0.92 → 0.0.95

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.
Files changed (46) hide show
  1. package/bun.lock +57 -9
  2. package/lib/common/enum-object.js +3 -3
  3. package/lib/common/enum-object.js.map +1 -1
  4. package/lib/common/general.d.ts +1 -1
  5. package/lib/common/general.js +1 -1
  6. package/lib/common/general.js.map +1 -1
  7. package/lib/dayjs/locales/zh-cn.js +1 -1
  8. package/lib/dayjs/locales/zh-cn.js.map +1 -1
  9. package/lib/formats/date.format.d.ts +2 -2
  10. package/lib/formats/date.format.js +10 -10
  11. package/lib/formats/date.format.js.map +1 -1
  12. package/lib/i18n/en-US/index.js +2 -2
  13. package/lib/i18n/en-US/index.js.map +1 -1
  14. package/lib/i18n/index.d.ts +1 -1
  15. package/lib/i18n/index.js +6 -6
  16. package/lib/i18n/index.js.map +1 -1
  17. package/lib/i18n/zh-CN/index.js +2 -2
  18. package/lib/i18n/zh-CN/index.js.map +1 -1
  19. package/lib/utils/accurate.util.js.map +1 -1
  20. package/lib/utils/basic.util.d.ts +12 -7
  21. package/lib/utils/basic.util.js +37 -11
  22. package/lib/utils/basic.util.js.map +1 -1
  23. package/lib/utils/color.util.d.ts +1 -1
  24. package/lib/utils/color.util.js.map +1 -1
  25. package/lib/utils/crypto.util.d.ts +2 -2
  26. package/lib/utils/crypto.util.js +2 -2
  27. package/lib/utils/crypto.util.js.map +1 -1
  28. package/lib/utils/date.util.d.ts +1 -1
  29. package/lib/utils/date.util.js.map +1 -1
  30. package/lib/utils/format.util.d.ts +2 -2
  31. package/lib/utils/format.util.js +2 -2
  32. package/lib/utils/format.util.js.map +1 -1
  33. package/lib/utils/locale.util.js +16 -17
  34. package/lib/utils/locale.util.js.map +1 -1
  35. package/lib/utils/number.util.js +2 -2
  36. package/lib/utils/number.util.js.map +1 -1
  37. package/lib/utils/random.util.d.ts +2 -2
  38. package/lib/utils/random.util.js +9 -9
  39. package/lib/utils/random.util.js.map +1 -1
  40. package/lib/utils/string.util.d.ts +1 -1
  41. package/lib/utils/string.util.js.map +1 -1
  42. package/lib/utils/validate.util.d.ts +13 -13
  43. package/lib/utils/validate.util.js +49 -49
  44. package/lib/utils/validate.util.js.map +1 -1
  45. package/package.json +6 -6
  46. package/templates/tsconfigs/recommended.json +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "almighty-tool",
3
- "version": "0.0.92",
3
+ "version": "0.0.95",
4
4
  "description": "almighty-tool",
5
5
  "author": "happy",
6
6
  "private": false,
@@ -46,14 +46,14 @@
46
46
  "deepmerge": "^4.3.0",
47
47
  "inflection": "^1.13.4",
48
48
  "is-what": "^4.1.8",
49
- "lodash": "^4.17.21",
49
+ "lodash-es": "^4.17.21",
50
50
  "mustache": "^4.2.0",
51
51
  "nock": "^13.3.0",
52
52
  "node-forge": "^1.3.1",
53
53
  "qs": "^6.11.0",
54
54
  "tslib": "^2.4.0",
55
55
  "tsx": "^4.19.2",
56
- "typescript": "^4.5.5",
56
+ "typescript": "^5.9.2",
57
57
  "uuid": "^9.0.0",
58
58
  "yargs": "^17.7.2",
59
59
  "yorkie": "^2.0.0"
@@ -66,15 +66,15 @@
66
66
  "@types/html5plus": "1.0.2",
67
67
  "@types/inflection": "^1.13.2",
68
68
  "@types/jest": "29.4.0",
69
- "@types/lodash": "4.14.191",
69
+ "@types/lodash-es": "^4.17.12",
70
70
  "@types/mustache": "^4.2.5",
71
- "@types/node": "18.14.2",
71
+ "@types/node": "^20.19.15",
72
72
  "@types/node-forge": "^1.3.11",
73
73
  "@types/node-rsa": "^1.1.4",
74
74
  "@types/power-assert": "1.5.8",
75
75
  "@types/qs": "6.9.7",
76
76
  "@types/uuid": "9.0.1",
77
- "@types/webpack-env": "1.18.0",
77
+ "@types/webpack-env": "^1.18.8",
78
78
  "@typescript-eslint/eslint-plugin": "5.54.0",
79
79
  "@typescript-eslint/parser": "5.54.0",
80
80
  "babel-eslint": "^10.0.1",
@@ -12,7 +12,7 @@
12
12
  "esModuleInterop": true,
13
13
  "allowSyntheticDefaultImports": true,
14
14
  "sourceMap": true,
15
- "types": ["node", "webpack-env", "jest"],
15
+ "types": ["webpack-env", "node", "jest"],
16
16
  "paths": {
17
17
  "@/*": ["./*"]
18
18
  },