-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.47 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": "@labdigital/next-intl-custom-paths",
"version": "0.8.0",
"description": "Custom path support for next-intl",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts"
}
},
"sideEffects": false,
"keywords": [],
"author": "Lab Digital <opensource@labdigital.nl>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/labd/next-intl-custom-paths"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsup",
"publish:ci": "pnpm build && pnpm changeset publish",
"test": "vitest run",
"test:ci": "vitest run --coverage",
"tsc": "tsc --noEmit",
"format": "prettier --write src/ *.json *.js *.ts",
"lint": "eslint *.ts"
},
"files": [
"dist",
"src"
],
"peerDependencies": {
"next": ">= 14.0.4",
"next-intl": ">= 3.4",
"react": ">= 18.2.0",
"react-dom": ">= 18.2.0"
},
"devDependencies": {
"@changesets/cli": "^2.26.2",
"@types/cookie-parser": "^1.4.3",
"@types/express": "^4.17.17",
"@types/react": "^18.2.46",
"@types/react-dom": "^18.2.18",
"@typescript-eslint/eslint-plugin": "^5.60.1",
"@vitest/coverage-v8": "1.2.0",
"eslint": "^8.40.0",
"eslint-plugin-unused-imports": "^2.0.0",
"tsup": "^7.1.0",
"typescript": "^5.1.5",
"vitest": "1.2.0",
"next-intl": "3.4.1",
"next": "14.0.4",
"react": "18.2.0",
"react-dom": "18.2.0"
}
}