chore(audit): Migrate to node:child_process prefix

Author: plthomasvaCreated Jul 30, 2026Updated Jul 30, 2026

In scripts/audit.js, const execFileSync = require('child_process').execFileSync; is currently being used because we still support Node.js versions older than Node 14.

Once Node < 14 support is fully dropped, this should be updated to equire('node:child_process') to resolve SonarQube issue S7772.

References:

Source: jsx-eslint/eslint-plugin-react