-
Notifications
You must be signed in to change notification settings - Fork 393
/
Copy pathpackage.json
107 lines (107 loc) · 2.38 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "@lingui/react",
"version": "5.1.2",
"sideEffects": false,
"description": "React components for translations",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"author": {
"name": "Tomáš Ehrlich",
"email": "tomas.ehrlich@gmail.com"
},
"license": "MIT",
"keywords": [
"react",
"component",
"react-component",
"react-native",
"i18n",
"internationalization",
"i9n",
"translation",
"icu",
"messageformat",
"multilingual",
"localization",
"l10n"
],
"scripts": {
"build": "rimraf ./dist && unbuild",
"stub": "unbuild --stub"
},
"repository": {
"type": "git",
"url": "https://github.com/lingui/js-lingui.git"
},
"bugs": {
"url": "https://github.com/lingui/js-lingui/issues"
},
"engines": {
"node": ">=20.0.0"
},
"exports": {
".": {
"require": {
"types": "./dist/index.d.cts",
"react-server": "./dist/index-rsc.cjs",
"default": "./dist/index.cjs"
},
"import": {
"types": "./dist/index.d.mts",
"react-server": "./dist/index-rsc.mjs",
"default": "./dist/index.mjs"
}
},
"./server": {
"require": {
"types": "./dist/server.d.ts",
"default": "./dist/server.cjs"
},
"import": {
"types": "./dist/server.d.ts",
"default": "./dist/server.mjs"
}
},
"./macro": {
"types": "./macro/index.d.ts",
"default": "./macro/index.js"
},
"./package.json": "./package.json"
},
"files": [
"LICENSE",
"README.md",
"dist/",
"macro/index.d.ts",
"macro/index.js"
],
"peerDependencies": {
"@lingui/babel-plugin-lingui-macro": "5.1.2",
"babel-plugin-macros": "2 || 3",
"react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0"
},
"peerDependenciesMeta": {
"@lingui/babel-plugin-lingui-macro": {
"optional": true
},
"babel-plugin-macros": {
"optional": true
}
},
"dependencies": {
"@babel/runtime": "^7.20.13",
"@lingui/core": "5.1.2"
},
"devDependencies": {
"@lingui/jest-mocks": "*",
"@testing-library/react": "^14.0.0",
"@types/react": "^18.2.13",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tsd": "^0.26.1",
"unbuild": "2.0.0"
}
}