forked from hunghg255/next-i18next-typesafe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.02 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
{
"name": "next-i18next-typesafe",
"version": "1.0.5",
"license": "MIT",
"main": "./dist/index.mjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"bin": {
"next-i18next-typesafe": "./bin/i18n-typesafe.mjs"
},
"files": [
"bin",
"dist",
"LICENSE"
],
"scripts": {
"build": "unbuild",
"stub": "unbuild --stub",
"test:cli": "node ./dist/cli.mjs -w -p 1234",
"release": "changeset publish",
"lint": "tsc"
},
"author": "hunghg255",
"devDependencies": {
"@changesets/cli": "^2.26.1",
"@types/node": "^18.15.13",
"husky": "^8.0.3",
"terser": "^5.17.1",
"tslib": "^2.5.2",
"typescript": "^5.0.4"
},
"dependencies": {
"chokidar": "^3.5.3",
"commander": "^10.0.1",
"globby": "^13.1.4",
"jiti": "^1.18.2",
"json-ts": "^1.6.4",
"unbuild": "^1.2.1"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs"
}
},
"keywords": [
"i18n",
"Next i18next",
"Nextjs"
]
}