react-intl 8.0.2 → 8.0.4

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.
Files changed (1) hide show
  1. package/package.json +23 -26
package/package.json CHANGED
@@ -1,11 +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.2",
4
+ "version": "8.0.4",
5
+ "license": "BSD-3-Clause",
5
6
  "author": "Eric Ferraiuolo <edf@ericf.me>",
6
- "browserslist": [
7
- "ie 11"
8
- ],
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/intl": "4.0.2",
18
+ "@formatjs/ecma402-abstract": "3.0.2",
19
+ "@formatjs/icu-messageformat-parser": "3.0.2",
20
+ "intl-messageformat": "11.0.2"
21
+ },
22
+ "peerDependencies": {
23
+ "@types/react": "19",
24
+ "react": "16 || 17 || 18 || 19",
25
+ "typescript": "^5.6.0"
26
+ },
9
27
  "bugs": "https://github.com/formatjs/formatjs/issues",
10
28
  "contributors": [
11
29
  "Aarni Koskela <akx@iki.fi>",
@@ -105,18 +123,6 @@
105
123
  "Yang Su <yang@quip.com>",
106
124
  "zouxuoz <zouxuoz@gmail.com>"
107
125
  ],
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
- },
120
126
  "gitHead": "773d6ebf881357f6e4c2dd7e8984b1bd0f69b4ca",
121
127
  "homepage": "https://formatjs.github.io/docs/react-intl",
122
128
  "keywords": [
@@ -133,19 +139,10 @@
133
139
  "translate",
134
140
  "translation"
135
141
  ],
136
- "license": "BSD-3-Clause",
137
- "peerDependencies": {
138
- "@types/react": "19",
139
- "react": "19",
140
- "typescript": "5.8.3"
141
- },
142
142
  "peerDependenciesMeta": {
143
143
  "typescript": {
144
144
  "optional": true
145
145
  }
146
146
  },
147
- "repository": "git@github.com:formatjs/formatjs.git",
148
- "sideEffects": false,
149
- "type": "module",
150
- "types": "index.d.ts"
147
+ "repository": "git@github.com:formatjs/formatjs.git"
151
148
  }