-
Notifications
You must be signed in to change notification settings - Fork 397
/
Copy pathpackage.json
64 lines (64 loc) · 1.27 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
{
"name": "@lingui/core",
"version": "4.8.0",
"sideEffects": false,
"description": "I18n tools for javascript",
"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": [
"i18n",
"i10n",
"i9n",
"internationalization",
"localization",
"translation",
"multilingual"
],
"scripts": {
"build": "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": ">=16.0.0"
},
"exports": {
".": {
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
},
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
}
},
"./package.json": "./package.json"
},
"files": [
"LICENSE",
"README.md",
"dist/"
],
"dependencies": {
"@babel/runtime": "^7.20.13",
"@lingui/message-utils": "4.8.0",
"unraw": "^3.0.0"
},
"devDependencies": {
"@lingui/jest-mocks": "*",
"unbuild": "2.0.0"
}
}