next-intl 3.6.0-alpha.1 → 3.6.0
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 +14 -11
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "next-intl",
|
|
3
|
-
"version": "3.6.0
|
|
3
|
+
"version": "3.6.0",
|
|
4
4
|
"sideEffects": false,
|
|
5
5
|
"author": "Jan Amann <jan@amann.work>",
|
|
6
6
|
"funding": [
|
|
@@ -16,6 +16,16 @@
|
|
|
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": "CI=true turbo test && turbo lint && turbo build && cp ../../README.md .",
|
|
26
|
+
"postpublish": "git checkout . && rm ./README.md",
|
|
27
|
+
"size": "size-limit"
|
|
28
|
+
},
|
|
19
29
|
"main": "./dist/index.react-client.js",
|
|
20
30
|
"module": "./dist/esm/index.react-client.js",
|
|
21
31
|
"typings": "./dist/types/src/index.react-client.d.ts",
|
|
@@ -72,7 +82,7 @@
|
|
|
72
82
|
"dependencies": {
|
|
73
83
|
"@formatjs/intl-localematcher": "^0.2.32",
|
|
74
84
|
"negotiator": "^0.6.3",
|
|
75
|
-
"use-intl": "3.6.0
|
|
85
|
+
"use-intl": "^3.6.0"
|
|
76
86
|
},
|
|
77
87
|
"peerDependencies": {
|
|
78
88
|
"next": "^10.0.0 || ^11.0.0 || ^12.0.0 || ^13.0.0 || ^14.0.0",
|
|
@@ -131,12 +141,5 @@
|
|
|
131
141
|
"limit": "5.81 KB"
|
|
132
142
|
}
|
|
133
143
|
],
|
|
134
|
-
"
|
|
135
|
-
|
|
136
|
-
"test": "TZ=Europe/Berlin vitest",
|
|
137
|
-
"lint": "pnpm run lint:source && pnpm run lint:package",
|
|
138
|
-
"lint:source": "eslint src test && tsc --noEmit",
|
|
139
|
-
"lint:package": "publint && attw --pack",
|
|
140
|
-
"size": "size-limit"
|
|
141
|
-
}
|
|
142
|
-
}
|
|
144
|
+
"gitHead": "5cb950652a74f5bb1675d747d1140ec2e2f04f8a"
|
|
145
|
+
}
|