-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.52 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
{
"name": "next-locales",
"version": "0.2.2",
"description": "Internationalization support for Next.js with static HTML export.",
"keywords": [
"i18n",
"html",
"export",
"internationalization",
"nextjs",
"static"
],
"repository": "https://github.com/cyntler/next-locales",
"main": "./dist/exports/client.js",
"types": "./dist/exports/client.d.ts",
"exports": {
".": "./dist/exports/client.js",
"./server": "./dist/exports/server.js"
},
"typesVersions": {
"*": {
"server": [
"./dist/exports/server.d.ts"
]
}
},
"scripts": {
"start": "tsc --watch",
"build": "rimraf ./dist && tsc",
"test": "jest",
"test:watch": "jest --watch",
"lint": "eslint ./src --ext ts,tsx",
"prettier": "prettier --check ./src"
},
"author": "Damian Cyntler",
"license": "MIT",
"dependencies": {
"@types/node": "^18.11.4",
"@types/react": "^18.0.21",
"@types/react-dom": "^18.0.6",
"find-project-root": "^1.1.1",
"mustache": "^4.2.0",
"next-language-detector": "^1.0.2",
"yaml": "^2.1.3"
},
"devDependencies": {
"@cyntler/eslint-config": "^0.0.3",
"@rushstack/eslint-patch": "^1.2.0",
"@testing-library/react": "^13.4.0",
"@types/jest": "^29.2.0",
"@types/mustache": "^4.2.1",
"eslint": "^8.26.0",
"jest": "^29.2.1",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"ts-jest": "^29.0.3",
"typescript": "^4.8.4"
},
"peerDependencies": {
"next": ">=12.0.0",
"react": ">=17.0.2"
}
}