@verdaccio/types
Advanced tools
Comparing version 11.0.0-6-next.24 to 11.0.0-6-next.25
# Change Log | ||
## 11.0.0-6-next.25 | ||
### Minor Changes | ||
- 16e38df8: feat: trustProxy property | ||
## 11.0.0-6-next.24 | ||
@@ -4,0 +10,0 @@ |
{ | ||
"name": "@verdaccio/types", | ||
"version": "11.0.0-6-next.24", | ||
"version": "11.0.0-6-next.25", | ||
"description": "verdaccio types definitions", | ||
@@ -33,4 +33,4 @@ "keywords": [ | ||
}, | ||
"main": "build/types.d.ts", | ||
"types": "build/types.d.ts", | ||
"main": "src/types.ts", | ||
"types": "src/types.ts", | ||
"devDependencies": { | ||
@@ -54,5 +54,5 @@ "@types/node": "16.18.10", | ||
"type-check": "tsc --noEmit -p tsconfig.build.json", | ||
"build": "tsc --emitDeclarationOnly -p tsconfig.build.json" | ||
"build": "echo 0" | ||
}, | ||
"readme": "# @verdaccio/types\n\nTypeScript definitions for Verdaccio plugins and internal code.\n" | ||
} |
@@ -229,2 +229,4 @@ import { PackageAccess, PackageList } from '@verdaccio/types/src/manifest'; | ||
passwordValidationRegex?: RegExp; | ||
// docs on `trustProxy` can be found at: https://expressjs.com/en/guide/behind-proxies.html | ||
trustProxy?: string; | ||
}; | ||
@@ -231,0 +233,0 @@ |
@@ -92,2 +92,8 @@ export interface PackageAccess { | ||
export interface PeerDependenciesMeta { | ||
[dependencyName: string]: { | ||
optional?: boolean; | ||
}; | ||
} | ||
export interface Version { | ||
@@ -120,2 +126,3 @@ name: string; | ||
optionalDependencies?: Dependencies; | ||
peerDependenciesMeta?: PeerDependenciesMeta; | ||
bundleDependencies?: Dependencies; | ||
@@ -132,2 +139,4 @@ keywords?: string | string[]; | ||
hasInstallScript?: boolean; | ||
cpu?: string[]; | ||
os?: string[]; | ||
} | ||
@@ -134,0 +143,0 @@ |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
55443
15
647