···11+import process from 'node:process'
12import { defineNuxtModule, useNuxt } from 'nuxt/kit'
23import { execSync } from 'node:child_process'
34import { join } from 'node:path'
+1
modules/oauth.ts
···11import { defineNuxtModule, useNuxt, addServerTemplate } from 'nuxt/kit'
22+import process from 'node:process'
23import { join } from 'node:path'
34import { appendFileSync, existsSync, readFileSync } from 'node:fs'
45import { randomUUID } from 'node:crypto'
+1
modules/runtime/server/cache.ts
···11+import process from 'node:process'
12import type { CachedFetchResult } from '#shared/utils/fetch-cache-config'
23import { createFetch } from 'ofetch'
34
+1
modules/standard-site-sync.ts
···11+import process from 'node:process'
12import { readFileSync } from 'node:fs'
23import { createHash } from 'node:crypto'
34import { defineNuxtModule, useNuxt, createResolver } from 'nuxt/kit'