-
-
Notifications
You must be signed in to change notification settings - Fork 45
/
package.json
67 lines (67 loc) · 1.69 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
{
"name": "remix-i18next",
"version": "7.0.0",
"author": {
"name": "Sergio Xalambrí",
"url": "https://sergiodxa.com",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sergiodxa/remix-i18next.git"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.17.0",
"@biomejs/biome": "^1.9.2",
"@total-typescript/tsconfig": "^1.0.4",
"@types/accept-language-parser": "^1.5.6",
"@types/bun": "^1.1.9",
"@types/react": "^18.3.8",
"consola": "^3.2.3",
"i18next": "^23.1.0",
"react": "^16.8.0 || ^17.0.0 || ^18.0.0",
"react-i18next": "^13.0.0 || ^14.0.0 || ^15.0.0",
"react-router": "^7.0.0",
"typedoc": "^0.26.7",
"typedoc-plugin-mdn-links": "^3.3.0",
"typescript": "^5.6.2"
},
"peerDependencies": {
"react-router": "^7.0.0",
"i18next": "^23.1.0",
"react": "^16.8.0 || ^17.0.0 || ^18.0.0",
"react-i18next": "^13.0.0 || ^14.0.0 || ^15.0.0"
},
"exports": {
"./package.json": "./package.json",
"./client": "./build/client.js",
"./server": "./build/server.js",
"./react": "./build/react.js"
},
"bugs": {
"url": "https://github.com/sergiodxa/remix-i18next/issues"
},
"description": "The easiest way to translate your FullStack React Router apps",
"engines": {
"node": ">=20.0.0"
},
"funding": "https://github.com/sponsors/sergiodxa",
"homepage": "https://github.com/sergiodxa/remix-i18next#readme",
"keywords": [
"remix",
"i18n",
"i18next",
"ssr",
"csr"
],
"license": "MIT",
"scripts": {
"build": "tsc",
"typecheck": "tsc --noEmit",
"quality": "biome check .",
"quality:fix": "biome check . --write --unsafe",
"exports": "bun run ./scripts/exports.ts"
},
"sideEffects": false,
"type": "module"
}