-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
121 lines (121 loc) · 3.37 KB
/
package.json
File metadata and controls
121 lines (121 loc) · 3.37 KB
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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "lingui-react-router",
"version": "1.1.2",
"description": "Integration between Lingui and React Router app",
"repository": {
"type": "git",
"url": "https://github.com/mdvorak/lingui-react-router"
},
"author": "Michal Dvořák",
"license": "MIT",
"keywords": [
"lingui",
"react-router",
"i18n",
"internationalization"
],
"packageManager": "pnpm@10.30.1+sha512.3590e550d5384caa39bd5c7c739f72270234b2f6059e13018f975c313b1eb9fefcc09714048765d4d9efe961382c312e624572c0420762bdc5d5940cdf9be73a",
"type": "module",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"./client": {
"types": "./dist/client/index.d.ts",
"import": "./dist/client/index.mjs",
"require": "./dist/client/index.cjs"
},
"./server": {
"types": "./dist/server/index.d.ts",
"import": "./dist/server/index.mjs",
"require": "./dist/server/index.cjs"
},
"./negotiate": {
"types": "./dist/negotiate/index.d.ts",
"import": "./dist/negotiate/index.mjs",
"require": "./dist/negotiate/index.cjs"
},
"./routes": {
"types": "./dist/plugin/routes.d.ts",
"import": "./dist/plugin/routes.mjs",
"require": "./dist/plugin/routes.cjs"
},
"./plugin": {
"types": "./dist/plugin/index.d.ts",
"import": "./dist/plugin/index.mjs",
"require": "./dist/plugin/index.cjs"
},
"./test": {
"types": "./dist/test/index.d.ts",
"import": "./dist/test/index.mjs",
"require": "./dist/test/index.cjs"
}
},
"files": [
"dist/",
"README.md",
"CHANGELOG.md",
"LICENSE"
],
"scripts": {
"prepare": "husky",
"typecheck": "tsc --noEmit --strict",
"lint": "eslint .",
"format": "eslint . --fix",
"build": "unbuild",
"pretest": "pnpm typecheck && pnpm build --sourcemap",
"test": "vitest run --coverage",
"test:all": "pnpm -r --stream test",
"dev": "pnpm format && pnpm typecheck && pnpm build --sourcemap --watch",
"prepack": "pnpm build",
"clean": "node -e '[\"dist\", \"coverage\"].forEach(d => fs.rmSync(d, { recursive: true, force: true }))'",
"start": "pnpm -r build && pnpm -F ./apps/test start"
},
"engines": {
"node": ">=20"
},
"dependencies": {
"cldr-core": "^48.0.0",
"fast-glob": "^3.3.3",
"negotiator": "^1.0.0"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@stylistic/eslint-plugin": "^5.6.1",
"@testing-library/react": "^16.3.1",
"@types/estree": "^1.0.8",
"@types/negotiator": "^0.6.4",
"@types/node": "^20.19.27",
"@types/react": "^19.2.7",
"@typescript-eslint/eslint-plugin": "^8.50.0",
"@typescript-eslint/parser": "^8.50.0",
"@vitest/coverage-v8": "^4.0.16",
"eslint": "^9.39.2",
"eslint-plugin-import": "^2.32.0",
"globals": "^16.5.0",
"husky": "^9.1.7",
"rollup": "^4.54.0",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"unbuild": "^3.6.1",
"vite": "^7.3.0",
"vitest": "^4.0.16"
},
"peerDependencies": {
"@lingui/conf": "^5.5.0",
"@lingui/core": "^5.5.0",
"@lingui/react": "^5.5.0",
"@react-router/dev": "^7.9.3",
"react": "^19.1.1",
"react-router": "^7.9.3"
},
"pnpm": {
"overrides": {
"source-map": "0.7.6"
}
}
}