PackageRepository
Object form of the package.json repository field (e.g. {"type":"git","url":"git+https://github.com/u/r.git"}).
- Import:
@kjanat/dreamcli - Export kind: interface
- Declared in:
src/core/config/package-json.ts - Source link:
src/core/config/package-json.ts:27
Signatures
ts
interface PackageRepository {}Members
Properties
directory
Subdirectory within a monorepo where the package lives.
ts
directory?: string;type
Version control system type (usually 'git').
ts
type?: string;url
Repository URL or locator.
ts
url?: string;