Add first business article and article layout

This commit is contained in:
2026-05-21 12:14:46 -05:00
parent 200e14e2e9
commit 4735704c6f
9617 changed files with 988627 additions and 0 deletions

37
node_modules/@astrojs/internal-helpers/dist/cli.d.ts generated vendored Normal file
View File

@@ -0,0 +1,37 @@
/**
* Validates npm package names to prevent command injection attacks in CLI tools.
*
* This regex follows npm naming rules and blocks shell metacharacters that could
* be used for command injection attacks.
*
* @see https://docs.npmjs.com/cli/v10/configuring-npm/package-json#name
*/
export declare const NPM_PACKAGE_NAME_REGEX: RegExp;
/**
* Validates a package name for use in CLI commands.
*
* @param packageName - The package name to validate
* @returns true if the package name is valid, false otherwise
*
* @example
* ```ts
* validatePackageName('react'); // true
* validatePackageName('@astrojs/tailwind'); // true
* validatePackageName('react; whoami'); // false
* validatePackageName('react$(whoami)'); // false
* ```
*/
export declare function validatePackageName(packageName: string): boolean;
/**
* Validates a package name and throws an error if invalid.
*
* @param packageName - The package name to validate
* @throws {Error} If the package name is invalid
*
* @example
* ```ts
* assertValidPackageName('react'); // OK
* assertValidPackageName('react; whoami'); // throws Error
* ```
*/
export declare function assertValidPackageName(packageName: string): asserts packageName is string;