next-intl 3.21.2-canary.0 → 3.22.0-canary.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +36 -14
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "next-intl",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.22.0-canary.1",
|
|
4
4
|
"sideEffects": false,
|
|
5
5
|
"author": "Jan Amann <jan@amann.work>",
|
|
6
6
|
"funding": [
|
|
@@ -16,16 +16,6 @@
|
|
|
16
16
|
"type": "git",
|
|
17
17
|
"url": "https://github.com/amannn/next-intl"
|
|
18
18
|
},
|
|
19
|
-
"scripts": {
|
|
20
|
-
"build": "rm -rf dist && rollup -c",
|
|
21
|
-
"test": "TZ=Europe/Berlin vitest",
|
|
22
|
-
"lint": "pnpm run lint:source && pnpm run lint:package",
|
|
23
|
-
"lint:source": "eslint src test && tsc --noEmit",
|
|
24
|
-
"lint:package": "publint && attw --pack",
|
|
25
|
-
"prepublishOnly": "turbo build && cp ../../README.md .",
|
|
26
|
-
"postpublish": "git checkout . && rm ./README.md",
|
|
27
|
-
"size": "size-limit"
|
|
28
|
-
},
|
|
29
19
|
"main": "./dist/index.react-client.js",
|
|
30
20
|
"module": "./dist/esm/index.react-client.js",
|
|
31
21
|
"typings": "./dist/types/src/index.react-client.d.ts",
|
|
@@ -87,11 +77,43 @@
|
|
|
87
77
|
"dependencies": {
|
|
88
78
|
"@formatjs/intl-localematcher": "^0.5.4",
|
|
89
79
|
"negotiator": "^0.6.3",
|
|
90
|
-
"use-intl": "
|
|
80
|
+
"use-intl": "3.21.2-canary.0"
|
|
91
81
|
},
|
|
92
82
|
"peerDependencies": {
|
|
93
83
|
"next": "^10.0.0 || ^11.0.0 || ^12.0.0 || ^13.0.0 || ^14.0.0",
|
|
94
84
|
"react": "^16.8.0 || ^17.0.0 || ^18.0.0"
|
|
95
85
|
},
|
|
96
|
-
"
|
|
97
|
-
|
|
86
|
+
"devDependencies": {
|
|
87
|
+
"@arethetypeswrong/cli": "^0.15.3",
|
|
88
|
+
"@edge-runtime/vm": "^3.2.0",
|
|
89
|
+
"@size-limit/preset-big-lib": "^11.1.4",
|
|
90
|
+
"@testing-library/react": "^16.0.0",
|
|
91
|
+
"@types/negotiator": "^0.6.3",
|
|
92
|
+
"@types/node": "^20.14.5",
|
|
93
|
+
"@types/react": "^18.3.3",
|
|
94
|
+
"@types/react-dom": "^18.3.0",
|
|
95
|
+
"eslint": "^8.56.0",
|
|
96
|
+
"eslint-config-molindo": "^7.0.0",
|
|
97
|
+
"eslint-plugin-deprecation": "^3.0.0",
|
|
98
|
+
"eslint-plugin-react-compiler": "0.0.0-experimental-8e3b87c-20240822",
|
|
99
|
+
"next": "^14.2.4",
|
|
100
|
+
"path-to-regexp": "^6.2.2",
|
|
101
|
+
"publint": "^0.2.8",
|
|
102
|
+
"react": "^18.3.1",
|
|
103
|
+
"react-dom": "^18.3.1",
|
|
104
|
+
"rollup": "^4.18.0",
|
|
105
|
+
"rollup-plugin-preserve-directives": "0.4.0",
|
|
106
|
+
"size-limit": "^11.1.4",
|
|
107
|
+
"typescript": "^5.5.3",
|
|
108
|
+
"vitest": "^2.0.2"
|
|
109
|
+
},
|
|
110
|
+
"prettier": "../../.prettierrc.json",
|
|
111
|
+
"scripts": {
|
|
112
|
+
"build": "rm -rf dist && rollup -c",
|
|
113
|
+
"test": "TZ=Europe/Berlin vitest",
|
|
114
|
+
"lint": "pnpm run lint:source && pnpm run lint:package",
|
|
115
|
+
"lint:source": "eslint src test && tsc --noEmit",
|
|
116
|
+
"lint:package": "publint && attw --pack",
|
|
117
|
+
"size": "size-limit"
|
|
118
|
+
}
|
|
119
|
+
}
|