react-intl 8.0.1 → 8.0.2
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 +23 -23
package/package.json
CHANGED
|
@@ -1,29 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "react-intl",
|
|
3
3
|
"description": "Internationalize React apps. This library provides React components and an API to format dates, numbers, and strings, including pluralization and handling translations.",
|
|
4
|
-
"version": "8.0.
|
|
5
|
-
"license": "BSD-3-Clause",
|
|
4
|
+
"version": "8.0.2",
|
|
6
5
|
"author": "Eric Ferraiuolo <edf@ericf.me>",
|
|
7
|
-
"type": "module",
|
|
8
|
-
"sideEffects": false,
|
|
9
|
-
"types": "index.d.ts",
|
|
10
|
-
"exports": {
|
|
11
|
-
".": "./index.js"
|
|
12
|
-
},
|
|
13
|
-
"dependencies": {
|
|
14
|
-
"@types/hoist-non-react-statics": "^3.3.1",
|
|
15
|
-
"hoist-non-react-statics": "^3.3.2",
|
|
16
|
-
"tslib": "^2.8.0",
|
|
17
|
-
"@formatjs/ecma402-abstract": "3.0.1",
|
|
18
|
-
"@formatjs/intl": "4.0.1",
|
|
19
|
-
"@formatjs/icu-messageformat-parser": "3.0.1",
|
|
20
|
-
"intl-messageformat": "11.0.1"
|
|
21
|
-
},
|
|
22
|
-
"peerDependencies": {
|
|
23
|
-
"@types/react": "19",
|
|
24
|
-
"react": "16 || 17 || 18 || 19",
|
|
25
|
-
"typescript": "^5.6.0"
|
|
26
|
-
},
|
|
27
6
|
"browserslist": [
|
|
28
7
|
"ie 11"
|
|
29
8
|
],
|
|
@@ -126,6 +105,18 @@
|
|
|
126
105
|
"Yang Su <yang@quip.com>",
|
|
127
106
|
"zouxuoz <zouxuoz@gmail.com>"
|
|
128
107
|
],
|
|
108
|
+
"dependencies": {
|
|
109
|
+
"@formatjs/ecma402-abstract": "3.0.1",
|
|
110
|
+
"@formatjs/icu-messageformat-parser": "3.0.1",
|
|
111
|
+
"@formatjs/intl": "4.0.1",
|
|
112
|
+
"@types/hoist-non-react-statics": "^3.3.1",
|
|
113
|
+
"hoist-non-react-statics": "^3.3.2",
|
|
114
|
+
"intl-messageformat": "11.0.1",
|
|
115
|
+
"tslib": "^2.8.0"
|
|
116
|
+
},
|
|
117
|
+
"exports": {
|
|
118
|
+
".": "./index.js"
|
|
119
|
+
},
|
|
129
120
|
"gitHead": "773d6ebf881357f6e4c2dd7e8984b1bd0f69b4ca",
|
|
130
121
|
"homepage": "https://formatjs.github.io/docs/react-intl",
|
|
131
122
|
"keywords": [
|
|
@@ -142,10 +133,19 @@
|
|
|
142
133
|
"translate",
|
|
143
134
|
"translation"
|
|
144
135
|
],
|
|
136
|
+
"license": "BSD-3-Clause",
|
|
137
|
+
"peerDependencies": {
|
|
138
|
+
"@types/react": "19",
|
|
139
|
+
"react": "19",
|
|
140
|
+
"typescript": "5.8.3"
|
|
141
|
+
},
|
|
145
142
|
"peerDependenciesMeta": {
|
|
146
143
|
"typescript": {
|
|
147
144
|
"optional": true
|
|
148
145
|
}
|
|
149
146
|
},
|
|
150
|
-
"repository": "git@github.com:formatjs/formatjs.git"
|
|
147
|
+
"repository": "git@github.com:formatjs/formatjs.git",
|
|
148
|
+
"sideEffects": false,
|
|
149
|
+
"type": "module",
|
|
150
|
+
"types": "index.d.ts"
|
|
151
151
|
}
|