/** * Pure path helpers for the project-local plugin store. * * The store is a self-contained npm workspace owned by the CLI under * `/.skaile/plugins/`. Nothing here touches the filesystem. */ /** `/.skaile/plugins` — the store root. */ export declare function pluginsDir(projectDir: string): string; /** `/package.json` — generated, never user-edited. */ export declare function pluginsPkgJson(projectDir: string): string; /** `/node_modules` — where reconciled plugin packages land. */ export declare function nodeModulesDir(projectDir: string): string; /** `/.reconcile-hash` — SHA of plugins-list + lock slice; skip reinstall when unchanged. */ export declare function reconcileHashFile(projectDir: string): string; /** * Absolute path to a plugin package's entry directory under the store's * `node_modules`. Dynamic `import()` against this absolute path works inside * compiled binaries via `pathToFileURL`. */ export declare function resolvePluginEntry(projectDir: string, pkgName: string): string; //# sourceMappingURL=paths.d.ts.map