@@ -36,7 +36,7 @@ function isPerfEnabled(): boolean {
3636 * @returns Stop function that completes the timing
3737 *
3838 * @example
39- * import { perfTimer } from '@socketsecurity/registry/ lib/performance'
39+ * import { perfTimer } from '@socketsecurity/lib/performance'
4040 *
4141 * const stop = perfTimer('api-call')
4242 * await fetchData()
@@ -78,7 +78,7 @@ export function perfTimer(
7878 * @returns Result of the function and duration
7979 *
8080 * @example
81- * import { measure } from '@socketsecurity/registry/ lib/performance'
81+ * import { measure } from '@socketsecurity/lib/performance'
8282 *
8383 * const { result, duration } = await measure('fetch-packages', async () => {
8484 * return await fetchPackages()
@@ -116,7 +116,7 @@ export async function measure<T>(
116116 * @returns Result of the function and duration
117117 *
118118 * @example
119- * import { measureSync } from '@socketsecurity/registry/ lib/performance'
119+ * import { measureSync } from '@socketsecurity/lib/performance'
120120 *
121121 * const { result, duration } = measureSync('parse-json', () => {
122122 * return JSON.parse(data)
@@ -151,7 +151,7 @@ export function measureSync<T>(
151151 * @returns Array of performance metrics
152152 *
153153 * @example
154- * import { getPerformanceMetrics } from '@socketsecurity/registry/ lib/performance'
154+ * import { getPerformanceMetrics } from '@socketsecurity/lib/performance'
155155 *
156156 * const metrics = getPerformanceMetrics()
157157 * console.log(metrics)
@@ -164,7 +164,7 @@ export function getPerformanceMetrics(): PerformanceMetrics[] {
164164 * Clear all collected performance metrics.
165165 *
166166 * @example
167- * import { clearPerformanceMetrics } from '@socketsecurity/registry/ lib/performance'
167+ * import { clearPerformanceMetrics } from '@socketsecurity/lib/performance'
168168 *
169169 * clearPerformanceMetrics()
170170 */
@@ -179,7 +179,7 @@ export function clearPerformanceMetrics(): void {
179179 * @returns Summary of metrics grouped by operation
180180 *
181181 * @example
182- * import { getPerformanceSummary } from '@socketsecurity/registry/ lib/performance'
182+ * import { getPerformanceSummary } from '@socketsecurity/lib/performance'
183183 *
184184 * const summary = getPerformanceSummary()
185185 * console.log(summary)
@@ -251,7 +251,7 @@ export function getPerformanceSummary(): Record<
251251 * Only prints when DEBUG=perf is enabled.
252252 *
253253 * @example
254- * import { printPerformanceSummary } from '@socketsecurity/registry/ lib/performance'
254+ * import { printPerformanceSummary } from '@socketsecurity/lib/performance'
255255 *
256256 * printPerformanceSummary()
257257 * // Performance Summary:
@@ -292,7 +292,7 @@ export function printPerformanceSummary(): void {
292292 * @param metadata - Optional metadata
293293 *
294294 * @example
295- * import { perfCheckpoint } from '@socketsecurity/registry/ lib/performance'
295+ * import { perfCheckpoint } from '@socketsecurity/lib/performance'
296296 *
297297 * perfCheckpoint('start-scan')
298298 * // ... do work ...
@@ -328,7 +328,7 @@ export function perfCheckpoint(
328328 * @returns Memory usage in MB
329329 *
330330 * @example
331- * import { trackMemory } from '@socketsecurity/registry/ lib/performance'
331+ * import { trackMemory } from '@socketsecurity/lib/performance'
332332 *
333333 * const memBefore = trackMemory('before-operation')
334334 * await heavyOperation()
@@ -368,7 +368,7 @@ export function trackMemory(label: string): number {
368368 * @returns Formatted performance report
369369 *
370370 * @example
371- * import { generatePerformanceReport } from '@socketsecurity/registry/ lib/performance'
371+ * import { generatePerformanceReport } from '@socketsecurity/lib/performance'
372372 *
373373 * console.log(generatePerformanceReport())
374374 * // ╔═══════════════════════════════════════════════╗
0 commit comments