Initial boiler plate project

This commit is contained in:
2024-09-24 03:52:46 +00:00
parent 6120b2d6c3
commit 154b93e267
10034 changed files with 2079352 additions and 2 deletions

3
node_modules/@next/env/README.md generated vendored Normal file
View File

@ -0,0 +1,3 @@
# `@next/env`
Next.js' util for loading dotenv files in with the proper priorities

20
node_modules/@next/env/dist/index.d.ts generated vendored Normal file
View File

@ -0,0 +1,20 @@
export type Env = {
[key: string]: string | undefined;
};
export type LoadedEnvFiles = Array<{
path: string;
contents: string;
}>;
export declare let initialEnv: Env | undefined;
export declare function updateInitialEnv(newEnv: Env): void;
type Log = {
info: (...args: any[]) => void;
error: (...args: any[]) => void;
};
export declare function processEnv(loadedEnvFiles: LoadedEnvFiles, dir?: string, log?: Log, forceReload?: boolean, onReload?: (envFilePath: string) => void): Env;
export declare function resetEnv(): void;
export declare function loadEnvConfig(dir: string, dev?: boolean, log?: Log, forceReload?: boolean, onReload?: (envFilePath: string) => void): {
combinedEnv: Env;
loadedEnvFiles: LoadedEnvFiles;
};
export {};

1
node_modules/@next/env/dist/index.js generated vendored Normal file

File diff suppressed because one or more lines are too long

36
node_modules/@next/env/package.json generated vendored Normal file
View File

@ -0,0 +1,36 @@
{
"name": "@next/env",
"version": "14.2.13",
"keywords": [
"react",
"next",
"next.js",
"dotenv"
],
"description": "Next.js dotenv file loading",
"repository": {
"type": "git",
"url": "https://github.com/vercel/next.js",
"directory": "packages/next-env"
},
"author": "Next.js Team <support@vercel.com>",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"dev": "ncc build ./index.ts -w -o dist/",
"prerelease": "node ../../scripts/rm.mjs dist",
"types": "tsc index.ts --declaration --emitDeclarationOnly --declarationDir dist --esModuleInterop",
"release": "ncc build ./index.ts -o ./dist/ --minify --no-cache --no-source-map-register",
"build": "pnpm release && pnpm types",
"prepublishOnly": "cd ../../ && turbo run build"
},
"devDependencies": {
"@vercel/ncc": "0.34.0",
"dotenv": "16.3.1",
"dotenv-expand": "10.0.0"
}
}

3
node_modules/@next/swc-linux-x64-gnu/README.md generated vendored Normal file
View File

@ -0,0 +1,3 @@
# `@next/swc-linux-x64-gnu`
This is the **x86_64-unknown-linux-gnu** binary for `@next/swc`

Binary file not shown.

26
node_modules/@next/swc-linux-x64-gnu/package.json generated vendored Normal file
View File

@ -0,0 +1,26 @@
{
"name": "@next/swc-linux-x64-gnu",
"version": "14.2.13",
"repository": {
"type": "git",
"url": "https://github.com/vercel/next.js",
"directory": "packages/next-swc/crates/napi/npm/linux-x64-gnu"
},
"os": [
"linux"
],
"cpu": [
"x64"
],
"libc": [
"glibc"
],
"main": "next-swc.linux-x64-gnu.node",
"files": [
"next-swc.linux-x64-gnu.node"
],
"license": "MIT",
"engines": {
"node": ">= 10"
}
}

3
node_modules/@next/swc-linux-x64-musl/README.md generated vendored Normal file
View File

@ -0,0 +1,3 @@
# `@next/swc-linux-x64-musl`
This is the **linux-x64-musl** binary for `@next/swc`

Binary file not shown.

26
node_modules/@next/swc-linux-x64-musl/package.json generated vendored Normal file
View File

@ -0,0 +1,26 @@
{
"name": "@next/swc-linux-x64-musl",
"version": "14.2.13",
"repository": {
"type": "git",
"url": "https://github.com/vercel/next.js",
"directory": "packages/next-swc/crates/napi/npm/linux-x64-musl"
},
"os": [
"linux"
],
"cpu": [
"x64"
],
"libc": [
"musl"
],
"main": "next-swc.linux-x64-musl.node",
"files": [
"next-swc.linux-x64-musl.node"
],
"license": "MIT",
"engines": {
"node": ">= 10"
}
}