-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
50 lines (50 loc) · 1.25 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
{
"name": "i18next-ssg",
"version": "3.0.3",
"description": "i18n tool for next.js SSG",
"repository": {
"type": "git",
"url": "[email protected]:Yrobot/i18next-ssg.git"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"homepage": "https://github.com/Yrobot/i18next-ssg",
"main": "dist/commonjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/types/index.d.ts",
"scripts": {
"clean": "rm -rf dist",
"build:es": "tsc --module es6 --outDir dist/esm",
"build:cjs": "tsc --module commonjs --outDir dist/commonjs",
"build": "yarn clean & yarn build:es & yarn build:cjs",
"prepublishOnly": "yarn build"
},
"keywords": [
"yrobot",
"i18n",
"ssg",
"next.js"
],
"author": "yrobot",
"license": "ISC",
"dependencies": {},
"devDependencies": {
"@tsconfig/recommended": "^1.0.1",
"@types/node": "^18.7.17",
"@types/react": "^18.0.21",
"i18next": "^22.4.15",
"next": "^13.4.2",
"next-i18next": "^13.2.2",
"react-i18next": "^12.2.2",
"typescript": "^4.8.3"
},
"peerDependencies": {
"next-i18next": "^13.2.0",
"react": "^18.0.0",
"i18next": "^22.0.0",
"next": "^13.0.0",
"react-i18next": "^12.2.0"
}
}