@verdaccio/types 13.0.5 → 13.0.6
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 +3 -3
- package/src/configuration.ts +5 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@verdaccio/types",
|
|
3
|
-
"version": "13.0.
|
|
3
|
+
"version": "13.0.6",
|
|
4
4
|
"description": "Verdaccio Type Definitions",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"enterprise",
|
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
"devDependencies": {
|
|
37
37
|
"@types/jsonwebtoken": "9.0.6",
|
|
38
38
|
"@types/ms": "2.1.0",
|
|
39
|
-
"typedoc": "0.28.
|
|
39
|
+
"typedoc": "0.28.20"
|
|
40
40
|
},
|
|
41
41
|
"typedoc": {
|
|
42
42
|
"displayName": "@verdaccio/types",
|
|
@@ -44,7 +44,7 @@
|
|
|
44
44
|
"readmeFile": "./README.md"
|
|
45
45
|
},
|
|
46
46
|
"engines": {
|
|
47
|
-
"node": ">=
|
|
47
|
+
"node": ">=22"
|
|
48
48
|
},
|
|
49
49
|
"scripts": {
|
|
50
50
|
"clean": "rimraf ./build",
|
package/src/configuration.ts
CHANGED
|
@@ -275,6 +275,11 @@ export type ServerSettingsConf = {
|
|
|
275
275
|
// express-rate-limit settings
|
|
276
276
|
rateLimit: RateLimit;
|
|
277
277
|
keepAliveTimeout?: number;
|
|
278
|
+
legacyAuthCache?: {
|
|
279
|
+
enabled?: boolean;
|
|
280
|
+
maxEntries?: number;
|
|
281
|
+
ttlMs?: number;
|
|
282
|
+
};
|
|
278
283
|
/**
|
|
279
284
|
* Plugins should be prefixed verdaccio-XXXXXX by default.
|
|
280
285
|
* To override the default prefix, use this property without `-`
|