i18ntk 1.5.2 โ†’ 1.5.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.
package/README.md CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  ![i18ntk Logo](docs/screenshots/i18ntk-logo-public.PNG)
4
4
 
5
- **Version:** 1.5.2
5
+ **Version:** 1.5.3
6
6
  **Last Updated:** 2025-08-06
7
7
  **GitHub Repository:** [vladnoskv/i18ntk](https://github.com/vladnoskv/i18ntk)
8
8
 
@@ -12,14 +12,15 @@
12
12
 
13
13
  **Framework Support:** Works **with or without** i18n frameworks. i18ntk manages translation files and validation - it does NOT implement translations on pages. Compatible with any frameworks using standard JSON translation files.
14
14
 
15
- > **Zero dependencies** | **71% smaller package** | **Works with any framework** | **Enterprise-grade security**
15
+ > **Zero dependencies** | ** Optimized smaller package** | **Works with any framework** | **Enterprise-grade security**
16
16
 
17
- **Key Features of v1.5.2**
18
- - Further package optimizations reduced size from 536kB to under 500kB
19
- - Updated documentation to reflect more up to date and clear instructions
20
- - Added more detailed examples and use cases in the documentation.
21
- - Changed GitHub urls to `https://github.com/vladnoskv/i18ntk` for reporting a bug, and across documentation.
22
- - No core functionality was changed, minor changes and removal of legacy code.
17
+ **Key Features of v1.5.3**
18
+ - **Package size optimization**: Reduced from 1.7MB to 1.3MB (23% reduction)
19
+ - **Fixed translation file inclusion**: Resolved issue where ui-locales were incorrectly excluded from package
20
+ - **Updated documentation**: More accurate and up-to-date instructions
21
+ - **Enhanced examples**: Added detailed use cases throughout documentation
22
+ - **GitHub URL updates**: Changed all URLs to `https://github.com/vladnoskv/i18ntk`
23
+ - **Maintained functionality**: All core features preserved while optimizing package size
23
24
 
24
25
  ## ๐Ÿš€ Quick Start
25
26
 
@@ -43,9 +44,10 @@ npx i18ntk analyze # Analyze translations
43
44
  - **Standard JSON format** - Compatible with i18next, LinguiJS, and more
44
45
 
45
46
  ### โšก **Lightning Fast**
46
- - **71% package size reduction** - From 1.7MB to just 499kB (unpacked) and 100kB (packed)
47
+ - **23% package size reduction** - From 1.7MB to 1.3MB (unpacked)
47
48
  - **1,600-1,900 operations/second** - Benchmarked performance
48
49
  - **Instant startup** - No heavy dependencies to load
50
+ - **Accurate sizing** - Package includes all necessary translation files
49
51
 
50
52
  ### ๐Ÿ” **Enterprise Security**
51
53
  - **AES-256-GCM encryption** - Enterprise-grade PIN protection
@@ -69,8 +71,9 @@ npx i18ntk analyze # Analyze translations
69
71
 
70
72
  ### ๐Ÿ“Š Performance & Reliability
71
73
  - **Zero runtime dependencies** - Pure Node.js implementation
72
- - **71% package size reduction** - From 1.7MB to 499kB
74
+ - **23% package size reduction** - From 1.7MB to 1.3MB
73
75
  - **Verified benchmarks** - 1,600-1,900 operations/second across all scales
76
+ - **Complete package** - All translation files properly included
74
77
 
75
78
 
76
79
  ## ๐ŸŽฏ Framework Integration
@@ -186,7 +189,7 @@ npx i18ntk manage
186
189
  - **Repository**: https://github.com/vladnoskv/i18ntk
187
190
  - **NPM Registry**: https://www.npmjs.com/package/i18ntk
188
191
  - **License**: MIT
189
- - **Current Version**: 1.5.2 (Released: August 6, 2025)
192
+ - **Package Version**: 1.5.3 (Released: August 6, 2025)
190
193
 
191
194
  ### **๐Ÿ” Identity Disclaimer**
192
195
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "i18ntk",
3
- "version": "1.5.2",
3
+ "version": "1.5.3",
4
4
  "description": "i18ntk (i18n Toolkit) - A comprehensive, enterprise-grade internationalization (i18n) management toolkit for JavaScript/TypeScript projects with advanced analysis, validation, and automation features",
5
5
  "keywords": [
6
6
  "i18n",
@@ -61,9 +61,8 @@
61
61
  "utils/",
62
62
  "scripts/",
63
63
  "settings/",
64
- "translations/",
64
+ "ui-locales/",
65
65
  "README.md",
66
- "CHANGELOG.md",
67
66
  "LICENSE"
68
67
  ],
69
68
  "scripts": {
@@ -91,7 +90,7 @@
91
90
  "complete": "node main/i18ntk-complete.js",
92
91
  "sizing": "node main/i18ntk-sizing.js",
93
92
  "summary": "node main/i18ntk-summary.js",
94
- "full-coverage": "npm run complete && npm run analyze",
93
+ "full-coverage": "npm run complete && npm run analyze",
95
94
  "verify-package": "node scripts/verify-package.js",
96
95
  "prepublishOnly": "npm run verify-package && node scripts/prepublish.js",
97
96
  "test": "node scripts/test-runner.js",
@@ -102,8 +101,6 @@
102
101
  "test:pin": "node dev/tests/test-admin-pin.js",
103
102
  "test:edge-cases": "node dev/tests/test-comprehensive.js",
104
103
  "test:old": "node utils/test-complete-system.js",
105
-
106
-
107
104
  "security:audit": "npm audit --audit-level=moderate",
108
105
  "security:fix": "npm audit fix",
109
106
  "security:check": "node utils/security-check.js",
@@ -116,9 +113,9 @@
116
113
  "languages:status": "node settings/settings-cli.js --language-status",
117
114
  "languages:restore": "echo 'Language restoration - use settings CLI for manual configuration'"
118
115
  },
119
- "dependencies": {},
120
- "devDependencies": {},
121
-
116
+ "dependencies": {
117
+ "i18ntk": "^1.5.2"
118
+ },
122
119
  "engines": {
123
120
  "node": ">=16.0.0"
124
121
  },
@@ -127,7 +124,7 @@
127
124
  },
128
125
  "preferGlobal": true,
129
126
  "versionInfo": {
130
- "version": "1.5.2",
127
+ "version": "1.5.3",
131
128
  "releaseDate": "08/06/2025",
132
129
  "lastUpdated": "08/06/2025",
133
130
  "maintainer": "Vladimir Noskov",
@@ -135,21 +132,21 @@
135
132
  "documentation": "./README.md",
136
133
  "apiReference": "./docs/api/API_REFERENCE.md",
137
134
  "majorChanges": [
138
- "๐Ÿ” Added configurable PIN protection for individual scripts and features",
139
- "โš™๏ธ Enhanced settings validation with proper ranges and defaults",
140
- "๐Ÿงน Added prepublish script for clean npm releases",
141
- "๐Ÿ”’ Improved security with per-script PIN protection configuration",
142
- "๐Ÿ“‹ Added comprehensive input validation for all settings",
143
- "๐ŸŽ›๏ธ New PIN protection master switch and individual script controls",
144
- "๐Ÿ”„ Reset to defaults functionality for PIN protection settings",
145
- "๐Ÿงช Enhanced test coverage for security features",
146
- "๐Ÿ“Š Updated documentation for new security features",
147
- "๐ŸŒ Complete translation updates across all 7 languages",
148
- "๐Ÿ“ฆ Package size optimization - reduced from 536kB to under 500kB",
149
- "๐Ÿš€ Enhanced framework support for Next.js, Nuxt.js, SvelteKit, and more"
135
+ "Package size optimization - reduced from 1.7MB to 1.3MB (23% reduction)",
136
+ "Fixed translation file inclusion - resolved ui-locales exclusion issue",
137
+ "Updated documentation - corrected package size claims and improved accuracy",
138
+ "Enhanced examples - added detailed use cases throughout documentation",
139
+ "GitHub URL updates - changed all GitHub URLs to https://github.com/vladnoskv/i18ntk"
150
140
  ],
151
141
  "breakingChanges": [],
152
- "deprecations": ["<1.5.0", "1.0.x", "1.1.x", "1.2.x", "1.3.x", "1.4.x"],
142
+ "deprecations": [
143
+ "<1.5.0",
144
+ "1.0.x",
145
+ "1.1.x",
146
+ "1.2.x",
147
+ "1.3.x",
148
+ "1.4.x"
149
+ ],
153
150
  "nextVersion": "1.6.0",
154
151
  "supportedNodeVersions": ">=16.0.0",
155
152
  "supportedFrameworks": {