@furystack/i18n 1.0.26 → 1.0.28

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 (2) hide show
  1. package/CHANGELOG.md +12 -0
  2. package/package.json +13 -8
package/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # Changelog
2
2
 
3
+ ## [1.0.28] - 2026-02-09
4
+
5
+ ### ⬆️ Dependencies
6
+
7
+ - Updated `@furystack/*` dependencies
8
+
9
+ ## [1.0.27] - 2026-01-26
10
+
11
+ ### 🔧 Chores
12
+
13
+ - Standardized author format, improved keywords, removed obsolete `gitHead`, added `engines` (Node 22+) and `sideEffects: false`
14
+
3
15
  ## [1.0.26] - 2026-01-26
4
16
 
5
17
  ### ⬆️ Dependencies
package/package.json CHANGED
@@ -1,19 +1,19 @@
1
1
  {
2
2
  "name": "@furystack/i18n",
3
- "version": "1.0.26",
3
+ "version": "1.0.28",
4
4
  "description": "Generic package for i18n",
5
5
  "type": "module",
6
6
  "scripts": {
7
- "build:es6": "tsc --outDir ./esm"
7
+ "build": "tsc --outDir ./esm"
8
8
  },
9
9
  "exports": {
10
10
  ".": {
11
+ "types": "./esm/index.d.ts",
11
12
  "import": "./esm/index.js"
12
13
  }
13
14
  },
14
15
  "files": [
15
16
  "esm",
16
- "types",
17
17
  "src"
18
18
  ],
19
19
  "repository": {
@@ -23,25 +23,30 @@
23
23
  "keywords": [
24
24
  "FuryStack",
25
25
  "i18n",
26
- "translations"
26
+ "translations",
27
+ "internationalization",
28
+ "localization"
27
29
  ],
28
30
  "publishConfig": {
29
31
  "access": "public"
30
32
  },
31
- "author": "gallay.lajos@gmail.com",
33
+ "author": "Gallay Lajos <gallay.lajos@gmail.com>",
32
34
  "license": "GPL-2.0",
33
35
  "bugs": {
34
36
  "url": "https://github.com/furystack/furystack/issues"
35
37
  },
36
38
  "homepage": "https://github.com/furystack/furystack",
37
39
  "dependencies": {
38
- "@furystack/inject": "^12.0.27",
39
- "@furystack/utils": "^8.1.8"
40
+ "@furystack/inject": "^12.0.29",
41
+ "@furystack/utils": "^8.1.9"
40
42
  },
41
43
  "devDependencies": {
42
44
  "@types/node": "^25.0.10",
43
45
  "typescript": "^5.9.3",
44
46
  "vitest": "^4.0.17"
45
47
  },
46
- "gitHead": "1045d854bfd8c475b7035471d130d401417a2321"
48
+ "engines": {
49
+ "node": ">=22.0.0"
50
+ },
51
+ "sideEffects": false
47
52
  }