- Introduced blog routing using Next.js App Router - Implemented dynamic [slug] pages for blog posts - Added MDX-based content loading via lib/posts - Integrated shared TopBar layout with navigation - Established clear content, lib and component separation
13 lines
364 B
TypeScript
13 lines
364 B
TypeScript
type PackageJsonDependencies = {
|
|
dependencies: Record<string, string>;
|
|
devDependencies: Record<string, string>;
|
|
};
|
|
export declare function getDependencies({ cwd, }: {
|
|
cwd: string;
|
|
}): Promise<PackageJsonDependencies>;
|
|
export declare function getPackageVersion({ cwd, name, }: {
|
|
cwd: string;
|
|
name: string;
|
|
}): Promise<string | null>;
|
|
export {};
|