react-intl 7.1.12 → 7.1.13
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 +19 -19
package/package.json
CHANGED
|
@@ -1,8 +1,25 @@
|
|
|
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": "7.1.
|
|
4
|
+
"version": "7.1.13",
|
|
5
|
+
"license": "BSD-3-Clause",
|
|
5
6
|
"author": "Eric Ferraiuolo <edf@ericf.me>",
|
|
7
|
+
"sideEffects": false,
|
|
8
|
+
"types": "index.d.ts",
|
|
9
|
+
"dependencies": {
|
|
10
|
+
"@types/hoist-non-react-statics": "^3.3.1",
|
|
11
|
+
"@types/react": "16 || 17 || 18 || 19",
|
|
12
|
+
"hoist-non-react-statics": "^3.3.2",
|
|
13
|
+
"tslib": "^2.8.0",
|
|
14
|
+
"@formatjs/ecma402-abstract": "2.3.5",
|
|
15
|
+
"intl-messageformat": "10.7.17",
|
|
16
|
+
"@formatjs/intl": "3.1.7",
|
|
17
|
+
"@formatjs/icu-messageformat-parser": "2.11.3"
|
|
18
|
+
},
|
|
19
|
+
"peerDependencies": {
|
|
20
|
+
"react": "16 || 17 || 18 || 19",
|
|
21
|
+
"typescript": "^5.6.0"
|
|
22
|
+
},
|
|
6
23
|
"browserslist": [
|
|
7
24
|
"ie 11"
|
|
8
25
|
],
|
|
@@ -105,16 +122,6 @@
|
|
|
105
122
|
"Yang Su <yang@quip.com>",
|
|
106
123
|
"zouxuoz <zouxuoz@gmail.com>"
|
|
107
124
|
],
|
|
108
|
-
"dependencies": {
|
|
109
|
-
"@formatjs/ecma402-abstract": "2.3.5",
|
|
110
|
-
"@formatjs/icu-messageformat-parser": "2.11.3",
|
|
111
|
-
"@formatjs/intl": "3.1.7",
|
|
112
|
-
"@types/hoist-non-react-statics": "^3.3.1",
|
|
113
|
-
"@types/react": "16 || 17 || 18 || 19",
|
|
114
|
-
"hoist-non-react-statics": "^3.3.2",
|
|
115
|
-
"intl-messageformat": "10.7.17",
|
|
116
|
-
"tslib": "^2.8.0"
|
|
117
|
-
},
|
|
118
125
|
"gitHead": "773d6ebf881357f6e4c2dd7e8984b1bd0f69b4ca",
|
|
119
126
|
"homepage": "https://formatjs.github.io/docs/react-intl",
|
|
120
127
|
"keywords": [
|
|
@@ -131,19 +138,12 @@
|
|
|
131
138
|
"translate",
|
|
132
139
|
"translation"
|
|
133
140
|
],
|
|
134
|
-
"license": "BSD-3-Clause",
|
|
135
141
|
"main": "index.js",
|
|
136
142
|
"module": "lib/index.js",
|
|
137
|
-
"peerDependencies": {
|
|
138
|
-
"react": "18",
|
|
139
|
-
"typescript": "5.8.3"
|
|
140
|
-
},
|
|
141
143
|
"peerDependenciesMeta": {
|
|
142
144
|
"typescript": {
|
|
143
145
|
"optional": true
|
|
144
146
|
}
|
|
145
147
|
},
|
|
146
|
-
"repository": "git@github.com:formatjs/formatjs.git"
|
|
147
|
-
"sideEffects": false,
|
|
148
|
-
"types": "index.d.ts"
|
|
148
|
+
"repository": "git@github.com:formatjs/formatjs.git"
|
|
149
149
|
}
|