import type { PackageJsonScripts, PackageScriptsOptions } from './types.js'; /** * Get an object reflecting the scripts that need to be added to the package.json. * * @param options Collection of mostly optional settings. * @param options.localOnly no server available * @param options.addMock add a script for using the mockserver * @param options.addTest add a script for executing OPA tests * @param options.flpAppId local FLP id * @param options.startFile path that should be opened with the start script * @param options.localStartFile path that should be opend with the start-local script * @param options.generateIndex exclude the start-noflp script * @param options.supportVirtualEndpoints whether to support virtual endpoints - search params will not be added as they are injected at runtime * @returns package.json scripts */ export declare function getPackageScripts({ localOnly, addMock, addTest, flpAppId, startFile, localStartFile, generateIndex, supportVirtualEndpoints }: PackageScriptsOptions): PackageJsonScripts; //# sourceMappingURL=getPackageScripts.d.ts.map