mirror of
https://github.com/soconnor0919/beenpad.git
synced 2026-02-05 00:06:40 -05:00
first commit
This commit is contained in:
1
node_modules/std-env/dist/index.cjs
generated
vendored
Normal file
1
node_modules/std-env/dist/index.cjs
generated
vendored
Normal file
File diff suppressed because one or more lines are too long
92
node_modules/std-env/dist/index.d.cts
generated
vendored
Normal file
92
node_modules/std-env/dist/index.d.cts
generated
vendored
Normal file
@@ -0,0 +1,92 @@
|
||||
type EnvObject = Record<string, string | undefined>;
|
||||
declare const env: EnvObject;
|
||||
declare const nodeENV: string;
|
||||
|
||||
/** Value of process.platform */
|
||||
declare const platform: string;
|
||||
/** Detect if `CI` environment variable is set or a provider CI detected */
|
||||
declare const isCI: boolean;
|
||||
/** Detect if stdout.TTY is available */
|
||||
declare const hasTTY: boolean;
|
||||
/** Detect if global `window` object is available */
|
||||
declare const hasWindow: boolean;
|
||||
/** Detect if `DEBUG` environment variable is set */
|
||||
declare const isDebug: boolean;
|
||||
/** Detect if `NODE_ENV` environment variable is `test` */
|
||||
declare const isTest: boolean;
|
||||
/** Detect if `NODE_ENV` environment variable is `production` */
|
||||
declare const isProduction: boolean;
|
||||
/** Detect if `NODE_ENV` environment variable is `dev` or `development` */
|
||||
declare const isDevelopment: boolean;
|
||||
/** Detect if MINIMAL environment variable is set, running in CI or test or TTY is unavailable */
|
||||
declare const isMinimal: boolean;
|
||||
/** Detect if process.platform is Windows */
|
||||
declare const isWindows: boolean;
|
||||
/** Detect if process.platform is Linux */
|
||||
declare const isLinux: boolean;
|
||||
/** Detect if process.platform is macOS (darwin kernel) */
|
||||
declare const isMacOS: boolean;
|
||||
/** Color Support */
|
||||
declare const isColorSupported: boolean;
|
||||
/** Node.js versions */
|
||||
declare const nodeVersion: string | null;
|
||||
declare const nodeMajorVersion: number | null;
|
||||
|
||||
interface Process extends Partial<Omit<typeof globalThis.process, "versions">> {
|
||||
env: EnvObject;
|
||||
versions: Record<string, string>;
|
||||
}
|
||||
declare const process: Process;
|
||||
|
||||
type ProviderName = "" | "appveyor" | "aws_amplify" | "azure_pipelines" | "azure_static" | "appcircle" | "bamboo" | "bitbucket" | "bitrise" | "buddy" | "buildkite" | "circle" | "cirrus" | "cloudflare_pages" | "cloudflare_workers" | "codebuild" | "codefresh" | "drone" | "drone" | "dsari" | "github_actions" | "gitlab" | "gocd" | "layerci" | "hudson" | "jenkins" | "magnum" | "netlify" | "nevercode" | "render" | "sail" | "semaphore" | "screwdriver" | "shippable" | "solano" | "strider" | "teamcity" | "travis" | "vercel" | "appcenter" | "codesandbox" | "stackblitz" | "stormkit" | "cleavr" | "zeabur" | "codesphere" | "railway" | "deno-deploy" | "firebase_app_hosting";
|
||||
type ProviderInfo = {
|
||||
name: ProviderName;
|
||||
ci?: boolean;
|
||||
[meta: string]: any;
|
||||
};
|
||||
/** Current provider info */
|
||||
declare const providerInfo: ProviderInfo;
|
||||
declare const provider: ProviderName;
|
||||
|
||||
type RuntimeName = "workerd" | "deno" | "netlify" | "node" | "bun" | "edge-light" | "fastly" | "";
|
||||
type RuntimeInfo = {
|
||||
name: RuntimeName;
|
||||
};
|
||||
/**
|
||||
* Indicates if running in Node.js or a Node.js compatible runtime.
|
||||
*
|
||||
* **Note:** When running code in Bun and Deno with Node.js compatibility mode, `isNode` flag will be also `true`, indicating running in a Node.js compatible runtime.
|
||||
*
|
||||
* Use `runtime === "node"` if you need strict check for Node.js runtime.
|
||||
*/
|
||||
declare const isNode: boolean;
|
||||
/**
|
||||
* Indicates if running in Bun runtime.
|
||||
*/
|
||||
declare const isBun: boolean;
|
||||
/**
|
||||
* Indicates if running in Deno runtime.
|
||||
*/
|
||||
declare const isDeno: boolean;
|
||||
/**
|
||||
* Indicates if running in Fastly runtime.
|
||||
*/
|
||||
declare const isFastly: boolean;
|
||||
/**
|
||||
* Indicates if running in Netlify runtime.
|
||||
*/
|
||||
declare const isNetlify: boolean;
|
||||
/**
|
||||
*
|
||||
* Indicates if running in EdgeLight (Vercel Edge) runtime.
|
||||
*/
|
||||
declare const isEdgeLight: boolean;
|
||||
/**
|
||||
* Indicates if running in Cloudflare Workers runtime.
|
||||
*/
|
||||
declare const isWorkerd: boolean;
|
||||
declare const runtimeInfo: RuntimeInfo | undefined;
|
||||
declare const runtime: RuntimeName;
|
||||
|
||||
export { env, hasTTY, hasWindow, isBun, isCI, isColorSupported, isDebug, isDeno, isDevelopment, isEdgeLight, isFastly, isLinux, isMacOS, isMinimal, isNetlify, isNode, isProduction, isTest, isWindows, isWorkerd, nodeENV, nodeMajorVersion, nodeVersion, platform, process, provider, providerInfo, runtime, runtimeInfo };
|
||||
export type { EnvObject, Process, ProviderInfo, ProviderName, RuntimeInfo, RuntimeName };
|
||||
92
node_modules/std-env/dist/index.d.mts
generated
vendored
Normal file
92
node_modules/std-env/dist/index.d.mts
generated
vendored
Normal file
@@ -0,0 +1,92 @@
|
||||
type EnvObject = Record<string, string | undefined>;
|
||||
declare const env: EnvObject;
|
||||
declare const nodeENV: string;
|
||||
|
||||
/** Value of process.platform */
|
||||
declare const platform: string;
|
||||
/** Detect if `CI` environment variable is set or a provider CI detected */
|
||||
declare const isCI: boolean;
|
||||
/** Detect if stdout.TTY is available */
|
||||
declare const hasTTY: boolean;
|
||||
/** Detect if global `window` object is available */
|
||||
declare const hasWindow: boolean;
|
||||
/** Detect if `DEBUG` environment variable is set */
|
||||
declare const isDebug: boolean;
|
||||
/** Detect if `NODE_ENV` environment variable is `test` */
|
||||
declare const isTest: boolean;
|
||||
/** Detect if `NODE_ENV` environment variable is `production` */
|
||||
declare const isProduction: boolean;
|
||||
/** Detect if `NODE_ENV` environment variable is `dev` or `development` */
|
||||
declare const isDevelopment: boolean;
|
||||
/** Detect if MINIMAL environment variable is set, running in CI or test or TTY is unavailable */
|
||||
declare const isMinimal: boolean;
|
||||
/** Detect if process.platform is Windows */
|
||||
declare const isWindows: boolean;
|
||||
/** Detect if process.platform is Linux */
|
||||
declare const isLinux: boolean;
|
||||
/** Detect if process.platform is macOS (darwin kernel) */
|
||||
declare const isMacOS: boolean;
|
||||
/** Color Support */
|
||||
declare const isColorSupported: boolean;
|
||||
/** Node.js versions */
|
||||
declare const nodeVersion: string | null;
|
||||
declare const nodeMajorVersion: number | null;
|
||||
|
||||
interface Process extends Partial<Omit<typeof globalThis.process, "versions">> {
|
||||
env: EnvObject;
|
||||
versions: Record<string, string>;
|
||||
}
|
||||
declare const process: Process;
|
||||
|
||||
type ProviderName = "" | "appveyor" | "aws_amplify" | "azure_pipelines" | "azure_static" | "appcircle" | "bamboo" | "bitbucket" | "bitrise" | "buddy" | "buildkite" | "circle" | "cirrus" | "cloudflare_pages" | "cloudflare_workers" | "codebuild" | "codefresh" | "drone" | "drone" | "dsari" | "github_actions" | "gitlab" | "gocd" | "layerci" | "hudson" | "jenkins" | "magnum" | "netlify" | "nevercode" | "render" | "sail" | "semaphore" | "screwdriver" | "shippable" | "solano" | "strider" | "teamcity" | "travis" | "vercel" | "appcenter" | "codesandbox" | "stackblitz" | "stormkit" | "cleavr" | "zeabur" | "codesphere" | "railway" | "deno-deploy" | "firebase_app_hosting";
|
||||
type ProviderInfo = {
|
||||
name: ProviderName;
|
||||
ci?: boolean;
|
||||
[meta: string]: any;
|
||||
};
|
||||
/** Current provider info */
|
||||
declare const providerInfo: ProviderInfo;
|
||||
declare const provider: ProviderName;
|
||||
|
||||
type RuntimeName = "workerd" | "deno" | "netlify" | "node" | "bun" | "edge-light" | "fastly" | "";
|
||||
type RuntimeInfo = {
|
||||
name: RuntimeName;
|
||||
};
|
||||
/**
|
||||
* Indicates if running in Node.js or a Node.js compatible runtime.
|
||||
*
|
||||
* **Note:** When running code in Bun and Deno with Node.js compatibility mode, `isNode` flag will be also `true`, indicating running in a Node.js compatible runtime.
|
||||
*
|
||||
* Use `runtime === "node"` if you need strict check for Node.js runtime.
|
||||
*/
|
||||
declare const isNode: boolean;
|
||||
/**
|
||||
* Indicates if running in Bun runtime.
|
||||
*/
|
||||
declare const isBun: boolean;
|
||||
/**
|
||||
* Indicates if running in Deno runtime.
|
||||
*/
|
||||
declare const isDeno: boolean;
|
||||
/**
|
||||
* Indicates if running in Fastly runtime.
|
||||
*/
|
||||
declare const isFastly: boolean;
|
||||
/**
|
||||
* Indicates if running in Netlify runtime.
|
||||
*/
|
||||
declare const isNetlify: boolean;
|
||||
/**
|
||||
*
|
||||
* Indicates if running in EdgeLight (Vercel Edge) runtime.
|
||||
*/
|
||||
declare const isEdgeLight: boolean;
|
||||
/**
|
||||
* Indicates if running in Cloudflare Workers runtime.
|
||||
*/
|
||||
declare const isWorkerd: boolean;
|
||||
declare const runtimeInfo: RuntimeInfo | undefined;
|
||||
declare const runtime: RuntimeName;
|
||||
|
||||
export { env, hasTTY, hasWindow, isBun, isCI, isColorSupported, isDebug, isDeno, isDevelopment, isEdgeLight, isFastly, isLinux, isMacOS, isMinimal, isNetlify, isNode, isProduction, isTest, isWindows, isWorkerd, nodeENV, nodeMajorVersion, nodeVersion, platform, process, provider, providerInfo, runtime, runtimeInfo };
|
||||
export type { EnvObject, Process, ProviderInfo, ProviderName, RuntimeInfo, RuntimeName };
|
||||
92
node_modules/std-env/dist/index.d.ts
generated
vendored
Normal file
92
node_modules/std-env/dist/index.d.ts
generated
vendored
Normal file
@@ -0,0 +1,92 @@
|
||||
type EnvObject = Record<string, string | undefined>;
|
||||
declare const env: EnvObject;
|
||||
declare const nodeENV: string;
|
||||
|
||||
/** Value of process.platform */
|
||||
declare const platform: string;
|
||||
/** Detect if `CI` environment variable is set or a provider CI detected */
|
||||
declare const isCI: boolean;
|
||||
/** Detect if stdout.TTY is available */
|
||||
declare const hasTTY: boolean;
|
||||
/** Detect if global `window` object is available */
|
||||
declare const hasWindow: boolean;
|
||||
/** Detect if `DEBUG` environment variable is set */
|
||||
declare const isDebug: boolean;
|
||||
/** Detect if `NODE_ENV` environment variable is `test` */
|
||||
declare const isTest: boolean;
|
||||
/** Detect if `NODE_ENV` environment variable is `production` */
|
||||
declare const isProduction: boolean;
|
||||
/** Detect if `NODE_ENV` environment variable is `dev` or `development` */
|
||||
declare const isDevelopment: boolean;
|
||||
/** Detect if MINIMAL environment variable is set, running in CI or test or TTY is unavailable */
|
||||
declare const isMinimal: boolean;
|
||||
/** Detect if process.platform is Windows */
|
||||
declare const isWindows: boolean;
|
||||
/** Detect if process.platform is Linux */
|
||||
declare const isLinux: boolean;
|
||||
/** Detect if process.platform is macOS (darwin kernel) */
|
||||
declare const isMacOS: boolean;
|
||||
/** Color Support */
|
||||
declare const isColorSupported: boolean;
|
||||
/** Node.js versions */
|
||||
declare const nodeVersion: string | null;
|
||||
declare const nodeMajorVersion: number | null;
|
||||
|
||||
interface Process extends Partial<Omit<typeof globalThis.process, "versions">> {
|
||||
env: EnvObject;
|
||||
versions: Record<string, string>;
|
||||
}
|
||||
declare const process: Process;
|
||||
|
||||
type ProviderName = "" | "appveyor" | "aws_amplify" | "azure_pipelines" | "azure_static" | "appcircle" | "bamboo" | "bitbucket" | "bitrise" | "buddy" | "buildkite" | "circle" | "cirrus" | "cloudflare_pages" | "cloudflare_workers" | "codebuild" | "codefresh" | "drone" | "drone" | "dsari" | "github_actions" | "gitlab" | "gocd" | "layerci" | "hudson" | "jenkins" | "magnum" | "netlify" | "nevercode" | "render" | "sail" | "semaphore" | "screwdriver" | "shippable" | "solano" | "strider" | "teamcity" | "travis" | "vercel" | "appcenter" | "codesandbox" | "stackblitz" | "stormkit" | "cleavr" | "zeabur" | "codesphere" | "railway" | "deno-deploy" | "firebase_app_hosting";
|
||||
type ProviderInfo = {
|
||||
name: ProviderName;
|
||||
ci?: boolean;
|
||||
[meta: string]: any;
|
||||
};
|
||||
/** Current provider info */
|
||||
declare const providerInfo: ProviderInfo;
|
||||
declare const provider: ProviderName;
|
||||
|
||||
type RuntimeName = "workerd" | "deno" | "netlify" | "node" | "bun" | "edge-light" | "fastly" | "";
|
||||
type RuntimeInfo = {
|
||||
name: RuntimeName;
|
||||
};
|
||||
/**
|
||||
* Indicates if running in Node.js or a Node.js compatible runtime.
|
||||
*
|
||||
* **Note:** When running code in Bun and Deno with Node.js compatibility mode, `isNode` flag will be also `true`, indicating running in a Node.js compatible runtime.
|
||||
*
|
||||
* Use `runtime === "node"` if you need strict check for Node.js runtime.
|
||||
*/
|
||||
declare const isNode: boolean;
|
||||
/**
|
||||
* Indicates if running in Bun runtime.
|
||||
*/
|
||||
declare const isBun: boolean;
|
||||
/**
|
||||
* Indicates if running in Deno runtime.
|
||||
*/
|
||||
declare const isDeno: boolean;
|
||||
/**
|
||||
* Indicates if running in Fastly runtime.
|
||||
*/
|
||||
declare const isFastly: boolean;
|
||||
/**
|
||||
* Indicates if running in Netlify runtime.
|
||||
*/
|
||||
declare const isNetlify: boolean;
|
||||
/**
|
||||
*
|
||||
* Indicates if running in EdgeLight (Vercel Edge) runtime.
|
||||
*/
|
||||
declare const isEdgeLight: boolean;
|
||||
/**
|
||||
* Indicates if running in Cloudflare Workers runtime.
|
||||
*/
|
||||
declare const isWorkerd: boolean;
|
||||
declare const runtimeInfo: RuntimeInfo | undefined;
|
||||
declare const runtime: RuntimeName;
|
||||
|
||||
export { env, hasTTY, hasWindow, isBun, isCI, isColorSupported, isDebug, isDeno, isDevelopment, isEdgeLight, isFastly, isLinux, isMacOS, isMinimal, isNetlify, isNode, isProduction, isTest, isWindows, isWorkerd, nodeENV, nodeMajorVersion, nodeVersion, platform, process, provider, providerInfo, runtime, runtimeInfo };
|
||||
export type { EnvObject, Process, ProviderInfo, ProviderName, RuntimeInfo, RuntimeName };
|
||||
1
node_modules/std-env/dist/index.mjs
generated
vendored
Normal file
1
node_modules/std-env/dist/index.mjs
generated
vendored
Normal file
@@ -0,0 +1 @@
|
||||
const r=Object.create(null),i=e=>globalThis.process?.env||import.meta.env||globalThis.Deno?.env.toObject()||globalThis.__env__||(e?r:globalThis),o=new Proxy(r,{get(e,s){return i()[s]??r[s]},has(e,s){const E=i();return s in E||s in r},set(e,s,E){const B=i(!0);return B[s]=E,!0},deleteProperty(e,s){if(!s)return!1;const E=i(!0);return delete E[s],!0},ownKeys(){const e=i(!0);return Object.keys(e)}}),t=typeof process<"u"&&process.env&&process.env.NODE_ENV||"",f=[["APPVEYOR"],["AWS_AMPLIFY","AWS_APP_ID",{ci:!0}],["AZURE_PIPELINES","SYSTEM_TEAMFOUNDATIONCOLLECTIONURI"],["AZURE_STATIC","INPUT_AZURE_STATIC_WEB_APPS_API_TOKEN"],["APPCIRCLE","AC_APPCIRCLE"],["BAMBOO","bamboo_planKey"],["BITBUCKET","BITBUCKET_COMMIT"],["BITRISE","BITRISE_IO"],["BUDDY","BUDDY_WORKSPACE_ID"],["BUILDKITE"],["CIRCLE","CIRCLECI"],["CIRRUS","CIRRUS_CI"],["CLOUDFLARE_PAGES","CF_PAGES",{ci:!0}],["CLOUDFLARE_WORKERS","WORKERS_CI",{ci:!0}],["CODEBUILD","CODEBUILD_BUILD_ARN"],["CODEFRESH","CF_BUILD_ID"],["DRONE"],["DRONE","DRONE_BUILD_EVENT"],["DSARI"],["GITHUB_ACTIONS"],["GITLAB","GITLAB_CI"],["GITLAB","CI_MERGE_REQUEST_ID"],["GOCD","GO_PIPELINE_LABEL"],["LAYERCI"],["HUDSON","HUDSON_URL"],["JENKINS","JENKINS_URL"],["MAGNUM"],["NETLIFY"],["NETLIFY","NETLIFY_LOCAL",{ci:!1}],["NEVERCODE"],["RENDER"],["SAIL","SAILCI"],["SEMAPHORE"],["SCREWDRIVER"],["SHIPPABLE"],["SOLANO","TDDIUM"],["STRIDER"],["TEAMCITY","TEAMCITY_VERSION"],["TRAVIS"],["VERCEL","NOW_BUILDER"],["VERCEL","VERCEL",{ci:!1}],["VERCEL","VERCEL_ENV",{ci:!1}],["APPCENTER","APPCENTER_BUILD_ID"],["CODESANDBOX","CODESANDBOX_SSE",{ci:!1}],["CODESANDBOX","CODESANDBOX_HOST",{ci:!1}],["STACKBLITZ"],["STORMKIT"],["CLEAVR"],["ZEABUR"],["CODESPHERE","CODESPHERE_APP_ID",{ci:!0}],["RAILWAY","RAILWAY_PROJECT_ID"],["RAILWAY","RAILWAY_SERVICE_ID"],["DENO-DEPLOY","DENO_DEPLOYMENT_ID"],["FIREBASE_APP_HOSTING","FIREBASE_APP_HOSTING",{ci:!0}]];function b(){if(globalThis.process?.env)for(const e of f){const s=e[1]||e[0];if(globalThis.process?.env[s])return{name:e[0].toLowerCase(),...e[2]}}return globalThis.process?.env?.SHELL==="/bin/jsh"&&globalThis.process?.versions?.webcontainer?{name:"stackblitz",ci:!1}:{name:"",ci:!1}}const l=b(),p=l.name;function n(e){return e?e!=="false":!1}const I=globalThis.process?.platform||"",T=n(o.CI)||l.ci!==!1,R=n(globalThis.process?.stdout&&globalThis.process?.stdout.isTTY),U=typeof window<"u",d=n(o.DEBUG),a=t==="test"||n(o.TEST),g=t==="production",h=t==="dev"||t==="development",v=n(o.MINIMAL)||T||a||!R,A=/^win/i.test(I),M=/^linux/i.test(I),m=/^darwin/i.test(I),Y=!n(o.NO_COLOR)&&(n(o.FORCE_COLOR)||(R||A)&&o.TERM!=="dumb"||T),C=(globalThis.process?.versions?.node||"").replace(/^v/,"")||null,V=Number(C?.split(".")[0])||null,W=globalThis.process||Object.create(null),_={versions:{}},y=new Proxy(W,{get(e,s){if(s==="env")return o;if(s in e)return e[s];if(s in _)return _[s]}}),O=globalThis.process?.release?.name==="node",c=!!globalThis.Bun||!!globalThis.process?.versions?.bun,D=!!globalThis.Deno,L=!!globalThis.fastly,S=!!globalThis.Netlify,u=!!globalThis.EdgeRuntime,N=globalThis.navigator?.userAgent==="Cloudflare-Workers",F=[[S,"netlify"],[u,"edge-light"],[N,"workerd"],[L,"fastly"],[D,"deno"],[c,"bun"],[O,"node"]];function G(){const e=F.find(s=>s[0]);if(e)return{name:e[1]}}const P=G(),K=P?.name||"";export{o as env,R as hasTTY,U as hasWindow,c as isBun,T as isCI,Y as isColorSupported,d as isDebug,D as isDeno,h as isDevelopment,u as isEdgeLight,L as isFastly,M as isLinux,m as isMacOS,v as isMinimal,S as isNetlify,O as isNode,g as isProduction,a as isTest,A as isWindows,N as isWorkerd,t as nodeENV,V as nodeMajorVersion,C as nodeVersion,I as platform,y as process,p as provider,l as providerInfo,K as runtime,P as runtimeInfo};
|
||||
Reference in New Issue
Block a user