next-intlayer 6.1.3 → 6.1.5
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 +30 -15
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "next-intlayer",
|
|
3
|
-
"version": "6.1.
|
|
3
|
+
"version": "6.1.5",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "Simplify internationalization i18n in Next.js with context providers, hooks, locale detection, and multilingual content integration.",
|
|
6
6
|
"keywords": [
|
|
@@ -67,6 +67,21 @@
|
|
|
67
67
|
"types": "dist/types/index.d.ts",
|
|
68
68
|
"typesVersions": {
|
|
69
69
|
"*": {
|
|
70
|
+
".": [
|
|
71
|
+
"./dist/types/index.d.ts"
|
|
72
|
+
],
|
|
73
|
+
"format": [
|
|
74
|
+
"./dist/types/client/format/index.d.ts"
|
|
75
|
+
],
|
|
76
|
+
"middleware": [
|
|
77
|
+
"./dist/types/middleware/index.d.ts"
|
|
78
|
+
],
|
|
79
|
+
"server": [
|
|
80
|
+
"./dist/types/server/index.d.ts"
|
|
81
|
+
],
|
|
82
|
+
"server/format": [
|
|
83
|
+
"./dist/types/server/format/index.d.ts"
|
|
84
|
+
],
|
|
70
85
|
"package.json": [
|
|
71
86
|
"./package.json"
|
|
72
87
|
]
|
|
@@ -79,12 +94,12 @@
|
|
|
79
94
|
"dependencies": {
|
|
80
95
|
"deepmerge": "^4.3.1",
|
|
81
96
|
"node-loader": "^2.1.0",
|
|
82
|
-
"@intlayer/
|
|
83
|
-
"@intlayer/
|
|
84
|
-
"@intlayer/
|
|
85
|
-
"@intlayer/core": "6.1.
|
|
86
|
-
"
|
|
87
|
-
"
|
|
97
|
+
"@intlayer/dictionaries-entry": "6.1.5",
|
|
98
|
+
"@intlayer/config": "6.1.5",
|
|
99
|
+
"@intlayer/chokidar": "6.1.5",
|
|
100
|
+
"@intlayer/core": "6.1.5",
|
|
101
|
+
"@intlayer/webpack": "6.1.5",
|
|
102
|
+
"react-intlayer": "6.1.5"
|
|
88
103
|
},
|
|
89
104
|
"devDependencies": {
|
|
90
105
|
"@types/node": "^24.5.2",
|
|
@@ -100,21 +115,21 @@
|
|
|
100
115
|
"typescript": "^5.9.2",
|
|
101
116
|
"vitest": "^3.2.4",
|
|
102
117
|
"@utils/eslint-config": "1.0.4",
|
|
118
|
+
"@utils/ts-config": "1.0.4",
|
|
103
119
|
"@utils/ts-config-types": "1.0.4",
|
|
104
120
|
"@utils/tsup-config": "1.0.4",
|
|
105
|
-
"
|
|
106
|
-
"intlayer": "6.1.3"
|
|
121
|
+
"intlayer": "6.1.5"
|
|
107
122
|
},
|
|
108
123
|
"peerDependencies": {
|
|
109
124
|
"next": ">=14.0.0",
|
|
110
125
|
"react": ">=16.0.0",
|
|
111
126
|
"react-dom": ">=16.0.0",
|
|
112
|
-
"@intlayer/config": "6.1.
|
|
113
|
-
"@intlayer/
|
|
114
|
-
"@intlayer/
|
|
115
|
-
"@intlayer/dictionaries-entry": "6.1.
|
|
116
|
-
"
|
|
117
|
-
"intlayer": "6.1.
|
|
127
|
+
"@intlayer/config": "6.1.5",
|
|
128
|
+
"@intlayer/core": "6.1.5",
|
|
129
|
+
"@intlayer/webpack": "6.1.5",
|
|
130
|
+
"@intlayer/dictionaries-entry": "6.1.5",
|
|
131
|
+
"intlayer": "6.1.5",
|
|
132
|
+
"react-intlayer": "6.1.5"
|
|
118
133
|
},
|
|
119
134
|
"engines": {
|
|
120
135
|
"node": ">=14.18"
|