@formatjs/intl 3.1.4 → 3.1.6

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 +22 -27
package/package.json CHANGED
@@ -1,46 +1,41 @@
1
1
  {
2
2
  "name": "@formatjs/intl",
3
- "version": "3.1.4",
4
3
  "description": "Internationalize JS apps. This library provides an API to format dates, numbers, and strings, including pluralization and handling translations.",
4
+ "version": "3.1.6",
5
+ "license": "MIT",
6
+ "author": "Long Ho <holevietlong@gmail.com>",
7
+ "sideEffects": false,
8
+ "dependencies": {
9
+ "tslib": "^2.8.0",
10
+ "@formatjs/icu-messageformat-parser": "2.11.2",
11
+ "@formatjs/ecma402-abstract": "2.3.4",
12
+ "intl-messageformat": "10.7.16",
13
+ "@formatjs/fast-memoize": "2.2.7"
14
+ },
15
+ "peerDependencies": {
16
+ "typescript": "^5.6.0"
17
+ },
18
+ "bugs": "https://github.com/formatjs/formatjs/issues",
19
+ "homepage": "https://formatjs.github.io",
5
20
  "keywords": [
6
- "intl",
21
+ "format",
22
+ "formatting",
23
+ "globalization",
7
24
  "i18n",
8
25
  "internationalization",
26
+ "intl",
9
27
  "locale",
10
28
  "localization",
11
- "globalization",
12
29
  "react-intl",
13
- "format",
14
- "formatting",
15
30
  "translate",
16
31
  "translation"
17
32
  ],
18
- "author": "Long Ho <holevietlong@gmail.com>",
19
- "license": "MIT",
20
- "homepage": "https://formatjs.github.io",
21
- "bugs": {
22
- "url": "https://github.com/formatjs/formatjs/issues"
23
- },
24
- "repository": {
25
- "type": "git",
26
- "url": "git@github.com:formatjs/formatjs.git"
27
- },
28
33
  "main": "index.js",
29
34
  "module": "lib/index.js",
30
- "sideEffects": false,
31
- "dependencies": {
32
- "tslib": "2",
33
- "@formatjs/icu-messageformat-parser": "2.11.1",
34
- "@formatjs/ecma402-abstract": "2.3.3",
35
- "@formatjs/fast-memoize": "2.2.6",
36
- "intl-messageformat": "10.7.15"
37
- },
38
- "peerDependencies": {
39
- "typescript": "5"
40
- },
41
35
  "peerDependenciesMeta": {
42
36
  "typescript": {
43
37
  "optional": true
44
38
  }
45
- }
39
+ },
40
+ "repository": "git@github.com:formatjs/formatjs.git"
46
41
  }