-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
121 lines (121 loc) · 3.45 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
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": "next-roots",
"version": "4.0.6",
"description": "Utility to handle internationalized routing for Next.js app folder.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"index.d.ts",
"index.js",
"mock.js"
],
"exports": {
".": {
"next-roots-mock": "./mock.js",
"default": "./index.js"
}
},
"bin": {
"next-roots": "dist/cli.js"
},
"scripts": {
"prepare": "husky",
"postinstall": "patch-package",
"clean": "rm -rf dist || true",
"build": "yarn clean && yarn typecheck && yarn test && node esbuild.mjs && yarn build:types && yarn lint",
"build:types": "yarn dts-bundle-generator --config ./dts.config.js",
"build:no-test": "node esbuild.mjs",
"build:coverage": "yarn clean && yarn typecheck && yarn test && node esbuild.mjs",
"lint": "eslint . --max-warnings 0",
"lint-fix": "eslint . --fix --max-warnings 0",
"test": "vitest --no-watch",
"test:watch": "vitest",
"test:coverage": "yarn vitest --no-watch --coverage",
"typecheck": "yarn tsc --noEmit",
"prepublish": "yarn build",
"publish:canary": "yarn publish --tag canary",
"semantic-release": "semantic-release"
},
"dependencies": {
"esbuild": "^0.24.0",
"esbuild-node-externals": "^1.15.0",
"node-watch": "^0.7.4",
"parse-typed-args": "^0.2.0",
"patch-package": "^8.0.0",
"path-to-regexp": "^8.2.0"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^11.0.1",
"@semantic-release/npm": "^12.0.1",
"@semantic-release/release-notes-generator": "^14.0.1",
"@types/node": "^22.10.1",
"@typescript-eslint/eslint-plugin": "^8.16.0",
"@typescript-eslint/parser": "^8.16.0",
"@vitest/coverage-istanbul": "^2.1.6",
"arg": "^5.0.2",
"colors": "^1.4.0",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"dts-bundle-generator": "^9.5.1",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-simple-import-sort": "^12.0.0",
"eslint-plugin-unused-imports": "^4.1.4",
"husky": "^9.1.7",
"lint-staged": "^15.2.10",
"prettier": "^3.4.1",
"semantic-release": "^24.2.0",
"typescript": "^5.7.2",
"vitest": "^2.1.6"
},
"license": "MIT",
"keywords": [
"next.js",
"i18n",
"routes",
"locale",
"internationalization",
"localization",
"localized",
"react",
"next",
"nextjs",
"server components"
],
"author": {
"name": "Jirka Svoboda",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "git+https://github.com/svobik7/next-roots.git"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"prettier --write",
"eslint --fix --quiet"
]
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"tag": "latest"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"packageManager": "[email protected]+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e",
"pnpm": {
"patchedDependencies": {
"dts-bundle-generator": "patches/dts-bundle-generator.patch"
}
}
}