react-intl 8.0.0 → 8.0.1
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,8 +1,29 @@
|
|
|
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.
|
|
4
|
+
"version": "8.0.1",
|
|
5
|
+
"license": "BSD-3-Clause",
|
|
5
6
|
"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
|
+
},
|
|
6
27
|
"browserslist": [
|
|
7
28
|
"ie 11"
|
|
8
29
|
],
|
|
@@ -105,18 +126,6 @@
|
|
|
105
126
|
"Yang Su <yang@quip.com>",
|
|
106
127
|
"zouxuoz <zouxuoz@gmail.com>"
|
|
107
128
|
],
|
|
108
|
-
"dependencies": {
|
|
109
|
-
"@formatjs/ecma402-abstract": "3.0.0",
|
|
110
|
-
"@formatjs/icu-messageformat-parser": "3.0.0",
|
|
111
|
-
"@formatjs/intl": "4.0.0",
|
|
112
|
-
"@types/hoist-non-react-statics": "^3.3.1",
|
|
113
|
-
"hoist-non-react-statics": "^3.3.2",
|
|
114
|
-
"intl-messageformat": "11.0.0",
|
|
115
|
-
"tslib": "^2.8.0"
|
|
116
|
-
},
|
|
117
|
-
"exports": {
|
|
118
|
-
".": "./index.js"
|
|
119
|
-
},
|
|
120
129
|
"gitHead": "773d6ebf881357f6e4c2dd7e8984b1bd0f69b4ca",
|
|
121
130
|
"homepage": "https://formatjs.github.io/docs/react-intl",
|
|
122
131
|
"keywords": [
|
|
@@ -133,19 +142,10 @@
|
|
|
133
142
|
"translate",
|
|
134
143
|
"translation"
|
|
135
144
|
],
|
|
136
|
-
"license": "BSD-3-Clause",
|
|
137
|
-
"peerDependencies": {
|
|
138
|
-
"@types/react": "19",
|
|
139
|
-
"react": "19",
|
|
140
|
-
"typescript": "5.8.3"
|
|
141
|
-
},
|
|
142
145
|
"peerDependenciesMeta": {
|
|
143
146
|
"typescript": {
|
|
144
147
|
"optional": true
|
|
145
148
|
}
|
|
146
149
|
},
|
|
147
|
-
"repository": "git@github.com:formatjs/formatjs.git"
|
|
148
|
-
"sideEffects": false,
|
|
149
|
-
"type": "module",
|
|
150
|
-
"types": "index.d.ts"
|
|
150
|
+
"repository": "git@github.com:formatjs/formatjs.git"
|
|
151
151
|
}
|