q9
This commit is contained in:
22
node_modules/std-env/LICENCE
generated
vendored
Normal file
22
node_modules/std-env/LICENCE
generated
vendored
Normal file
@@ -0,0 +1,22 @@
|
||||
MIT License
|
||||
|
||||
Copyright (c) Pooya Parsa <pooya@pi0.io>
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
SOFTWARE.
|
||||
|
||||
119
node_modules/std-env/README.md
generated
vendored
Normal file
119
node_modules/std-env/README.md
generated
vendored
Normal file
@@ -0,0 +1,119 @@
|
||||
# std-env
|
||||
|
||||
[](http://npmjs.com/package/std-env)
|
||||
[](http://npmjs.com/package/std-env)
|
||||
[](https://bundlephobia.com/result?p=std-env)
|
||||
|
||||
> Runtime agnostic JS utils
|
||||
|
||||
## Installation
|
||||
|
||||
```sh
|
||||
# Using npm
|
||||
npm i std-env
|
||||
|
||||
# Using pnpm
|
||||
pnpm i std-env
|
||||
|
||||
# Using yarn
|
||||
yarn add std-env
|
||||
```
|
||||
|
||||
## Usage
|
||||
|
||||
```js
|
||||
// ESM
|
||||
import { env, isDevelopment, isProduction } from "std-env";
|
||||
|
||||
// CommonJS
|
||||
const { env, isDevelopment, isProduction } = require("std-env");
|
||||
```
|
||||
|
||||
## Flags
|
||||
|
||||
- `hasTTY`
|
||||
- `hasWindow`
|
||||
- `isDebug`
|
||||
- `isDevelopment`
|
||||
- `isLinux`
|
||||
- `isMacOS`
|
||||
- `isMinimal`
|
||||
- `isProduction`
|
||||
- `isTest`
|
||||
- `isWindows`
|
||||
- `platform`
|
||||
- `isColorSupported`
|
||||
- `nodeVersion`
|
||||
- `nodeMajorVersion`
|
||||
|
||||
You can read more about how each flag works from [./src/flags.ts](./src/flags.ts).
|
||||
|
||||
## Provider Detection
|
||||
|
||||
`std-env` can automatically detect the current runtime provider based on environment variables.
|
||||
|
||||
You can use `isCI` and `platform` exports to detect it:
|
||||
|
||||
```ts
|
||||
import { isCI, provider, providerInfo } from "std-env";
|
||||
|
||||
console.log({
|
||||
isCI, // true
|
||||
provider, // "github_actions"
|
||||
providerInfo, // { name: "github_actions", isCI: true }
|
||||
});
|
||||
```
|
||||
|
||||
List of well known providers can be found from [./src/providers.ts](./src/providers.ts).
|
||||
|
||||
## Runtime Detection
|
||||
|
||||
`std-env` can automatically detect the current JavaScript runtime based on global variables, following the [WinterCG Runtime Keys proposal](https://runtime-keys.proposal.wintercg.org/):
|
||||
|
||||
```ts
|
||||
import { runtime, runtimeInfo } from "std-env";
|
||||
|
||||
// "" | "node" | "deno" | "bun" | "workerd" | "lagon" ...
|
||||
console.log(runtime);
|
||||
|
||||
// { name: "node" }
|
||||
console.log(runtimeInfo);
|
||||
```
|
||||
|
||||
You can also use individual named exports for each runtime detection:
|
||||
|
||||
> [!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.
|
||||
|
||||
- `isNode`
|
||||
- `isBun`
|
||||
- `isDeno`
|
||||
- `isNetlify`
|
||||
- `isEdgeLight`
|
||||
- `isWorkerd`
|
||||
- `isLagon`
|
||||
- `isFastly`
|
||||
|
||||
List of well known providers can be found from [./src/runtimes.ts](./src/runtimes.ts).
|
||||
|
||||
## Platform-Agnostic `env`
|
||||
|
||||
`std-env` provides a lightweight proxy to access environment variables in a platform agnostic way.
|
||||
|
||||
```ts
|
||||
import { env } from "std-env";
|
||||
```
|
||||
|
||||
## Platform-Agnostic `process`
|
||||
|
||||
`std-env` provides a lightweight proxy to access [`process`](https://nodejs.org/api/process.html) object in a platform agnostic way.
|
||||
|
||||
```ts
|
||||
import { process } from "std-env";
|
||||
```
|
||||
|
||||
## License
|
||||
|
||||
MIT
|
||||
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
97
node_modules/std-env/dist/index.d.cts
generated
vendored
Normal file
97
node_modules/std-env/dist/index.d.cts
generated
vendored
Normal file
@@ -0,0 +1,97 @@
|
||||
type EnvObject = Record<string, string | undefined>;
|
||||
declare const env: EnvObject;
|
||||
declare const nodeENV: string;
|
||||
|
||||
/** Value of process.platform */
|
||||
declare const platform: NodeJS.Platform;
|
||||
/** 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" | "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";
|
||||
type ProviderInfo = {
|
||||
name: ProviderName;
|
||||
ci?: boolean;
|
||||
[meta: string]: any;
|
||||
};
|
||||
/** Current provider info */
|
||||
declare const providerInfo: ProviderInfo;
|
||||
declare const provider: ProviderName;
|
||||
|
||||
type RuntimeName = "workerd" | "deno" | "lagon" | "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;
|
||||
/**
|
||||
* Indicates if running in Lagon runtime.
|
||||
*
|
||||
* @deprecated https://github.com/unjs/std-env/issues/105
|
||||
*/
|
||||
declare const isLagon: boolean;
|
||||
declare const runtimeInfo: RuntimeInfo | undefined;
|
||||
declare const runtime: RuntimeName;
|
||||
|
||||
export { type EnvObject, type Process, type ProviderInfo, type ProviderName, type RuntimeInfo, type RuntimeName, env, hasTTY, hasWindow, isBun, isCI, isColorSupported, isDebug, isDeno, isDevelopment, isEdgeLight, isFastly, isLagon, isLinux, isMacOS, isMinimal, isNetlify, isNode, isProduction, isTest, isWindows, isWorkerd, nodeENV, nodeMajorVersion, nodeVersion, platform, process, provider, providerInfo, runtime, runtimeInfo };
|
||||
97
node_modules/std-env/dist/index.d.mts
generated
vendored
Normal file
97
node_modules/std-env/dist/index.d.mts
generated
vendored
Normal file
@@ -0,0 +1,97 @@
|
||||
type EnvObject = Record<string, string | undefined>;
|
||||
declare const env: EnvObject;
|
||||
declare const nodeENV: string;
|
||||
|
||||
/** Value of process.platform */
|
||||
declare const platform: NodeJS.Platform;
|
||||
/** 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" | "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";
|
||||
type ProviderInfo = {
|
||||
name: ProviderName;
|
||||
ci?: boolean;
|
||||
[meta: string]: any;
|
||||
};
|
||||
/** Current provider info */
|
||||
declare const providerInfo: ProviderInfo;
|
||||
declare const provider: ProviderName;
|
||||
|
||||
type RuntimeName = "workerd" | "deno" | "lagon" | "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;
|
||||
/**
|
||||
* Indicates if running in Lagon runtime.
|
||||
*
|
||||
* @deprecated https://github.com/unjs/std-env/issues/105
|
||||
*/
|
||||
declare const isLagon: boolean;
|
||||
declare const runtimeInfo: RuntimeInfo | undefined;
|
||||
declare const runtime: RuntimeName;
|
||||
|
||||
export { type EnvObject, type Process, type ProviderInfo, type ProviderName, type RuntimeInfo, type RuntimeName, env, hasTTY, hasWindow, isBun, isCI, isColorSupported, isDebug, isDeno, isDevelopment, isEdgeLight, isFastly, isLagon, isLinux, isMacOS, isMinimal, isNetlify, isNode, isProduction, isTest, isWindows, isWorkerd, nodeENV, nodeMajorVersion, nodeVersion, platform, process, provider, providerInfo, runtime, runtimeInfo };
|
||||
97
node_modules/std-env/dist/index.d.ts
generated
vendored
Normal file
97
node_modules/std-env/dist/index.d.ts
generated
vendored
Normal file
@@ -0,0 +1,97 @@
|
||||
type EnvObject = Record<string, string | undefined>;
|
||||
declare const env: EnvObject;
|
||||
declare const nodeENV: string;
|
||||
|
||||
/** Value of process.platform */
|
||||
declare const platform: NodeJS.Platform;
|
||||
/** 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" | "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";
|
||||
type ProviderInfo = {
|
||||
name: ProviderName;
|
||||
ci?: boolean;
|
||||
[meta: string]: any;
|
||||
};
|
||||
/** Current provider info */
|
||||
declare const providerInfo: ProviderInfo;
|
||||
declare const provider: ProviderName;
|
||||
|
||||
type RuntimeName = "workerd" | "deno" | "lagon" | "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;
|
||||
/**
|
||||
* Indicates if running in Lagon runtime.
|
||||
*
|
||||
* @deprecated https://github.com/unjs/std-env/issues/105
|
||||
*/
|
||||
declare const isLagon: boolean;
|
||||
declare const runtimeInfo: RuntimeInfo | undefined;
|
||||
declare const runtime: RuntimeName;
|
||||
|
||||
export { type EnvObject, type Process, type ProviderInfo, type ProviderName, type RuntimeInfo, type RuntimeName, env, hasTTY, hasWindow, isBun, isCI, isColorSupported, isDebug, isDeno, isDevelopment, isEdgeLight, isFastly, isLagon, isLinux, isMacOS, isMinimal, isNetlify, isNode, isProduction, isTest, isWindows, isWorkerd, nodeENV, nodeMajorVersion, nodeVersion, platform, process, provider, providerInfo, runtime, runtimeInfo };
|
||||
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),E=e=>globalThis.process?.env||import.meta.env||globalThis.Deno?.env.toObject()||globalThis.__env__||(e?r:globalThis),s=new Proxy(r,{get(e,o){return E()[o]??r[o]},has(e,o){const i=E();return o in i||o in r},set(e,o,i){const g=E(!0);return g[o]=i,!0},deleteProperty(e,o){if(!o)return!1;const i=E(!0);return delete i[o],!0},ownKeys(){const e=E(!0);return Object.keys(e)}}),t=typeof process<"u"&&process.env&&process.env.NODE_ENV||"",p=[["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}],["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}],["STACKBLITZ"],["STORMKIT"],["CLEAVR"],["ZEABUR"],["CODESPHERE","CODESPHERE_APP_ID",{ci:!0}],["RAILWAY","RAILWAY_PROJECT_ID"],["RAILWAY","RAILWAY_SERVICE_ID"]];function B(){if(globalThis.process?.env)for(const e of p){const o=e[1]||e[0];if(globalThis.process?.env[o])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(),d=l.name;function n(e){return e?e!=="false":!1}const I=globalThis.process?.platform||"",T=n(s.CI)||l.ci!==!1,R=n(globalThis.process?.stdout&&globalThis.process?.stdout.isTTY),U=typeof window<"u",h=n(s.DEBUG),C=t==="test"||n(s.TEST),f=t==="production",v=t==="dev"||t==="development",m=n(s.MINIMAL)||T||C||!R,a=/^win/i.test(I),M=/^linux/i.test(I),V=/^darwin/i.test(I),Y=!n(s.NO_COLOR)&&(n(s.FORCE_COLOR)||(R||a)&&s.TERM!=="dumb"||T),_=(globalThis.process?.versions?.node||"").replace(/^v/,"")||null,y=Number(_?.split(".")[0])||null,W=globalThis.process||Object.create(null),c={versions:{}},w=new Proxy(W,{get(e,o){if(o==="env")return s;if(o in e)return e[o];if(o in c)return c[o]}}),A=globalThis.process?.release?.name==="node",L=!!globalThis.Bun||!!globalThis.process?.versions?.bun,D=!!globalThis.Deno,O=!!globalThis.fastly,S=!!globalThis.Netlify,N=!!globalThis.EdgeRuntime,u=globalThis.navigator?.userAgent==="Cloudflare-Workers",b=!!globalThis.__lagon__,F=[[S,"netlify"],[N,"edge-light"],[u,"workerd"],[O,"fastly"],[D,"deno"],[L,"bun"],[A,"node"],[b,"lagon"]];function G(){const e=F.find(o=>o[0]);if(e)return{name:e[1]}}const P=G(),K=P?.name||"";export{s as env,R as hasTTY,U as hasWindow,L as isBun,T as isCI,Y as isColorSupported,h as isDebug,D as isDeno,v as isDevelopment,N as isEdgeLight,O as isFastly,b as isLagon,M as isLinux,V as isMacOS,m as isMinimal,S as isNetlify,A as isNode,f as isProduction,C as isTest,a as isWindows,u as isWorkerd,t as nodeENV,y as nodeMajorVersion,_ as nodeVersion,I as platform,w as process,d as provider,l as providerInfo,K as runtime,P as runtimeInfo};
|
||||
46
node_modules/std-env/package.json
generated
vendored
Normal file
46
node_modules/std-env/package.json
generated
vendored
Normal file
@@ -0,0 +1,46 @@
|
||||
{
|
||||
"name": "std-env",
|
||||
"version": "3.7.0",
|
||||
"description": "Runtime agnostic JS utils",
|
||||
"repository": "unjs/std-env",
|
||||
"license": "MIT",
|
||||
"sideEffects": false,
|
||||
"exports": {
|
||||
"types": "./dist/index.d.ts",
|
||||
"import": "./dist/index.mjs",
|
||||
"require": "./dist/index.cjs"
|
||||
},
|
||||
"main": "./dist/index.cjs",
|
||||
"types": "./dist/index.d.ts",
|
||||
"files": [
|
||||
"dist"
|
||||
],
|
||||
"scripts": {
|
||||
"build": "unbuild",
|
||||
"dev": "vitest",
|
||||
"lint": "eslint --ext .ts . && prettier -c src test",
|
||||
"lint:fix": "eslint --fix --ext .ts . && prettier -w src test",
|
||||
"prepack": "unbuild",
|
||||
"play:bun": "bun playground/bun.ts",
|
||||
"play:deno": "pnpm build && deno run -A playground/deno.ts",
|
||||
"play:node": "pnpm build && node playground/node.mjs",
|
||||
"release": "pnpm test && changelogen --release && npm publish && git push --follow-tags",
|
||||
"test": "pnpm lint && pnpm typecheck && vitest run --coverage",
|
||||
"typecheck": "tsc --noEmit"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@types/node": "^20.10.5",
|
||||
"@vitest/coverage-v8": "^1.1.0",
|
||||
"changelogen": "^0.5.5",
|
||||
"esbuild": "^0.19.10",
|
||||
"eslint": "^8.56.0",
|
||||
"eslint-config-unjs": "^0.2.1",
|
||||
"jiti": "^1.21.0",
|
||||
"prettier": "^3.1.1",
|
||||
"rollup": "^4.9.1",
|
||||
"typescript": "^5.3.3",
|
||||
"unbuild": "^2.0.0",
|
||||
"vitest": "^1.1.0"
|
||||
},
|
||||
"packageManager": "pnpm@8.12.1"
|
||||
}
|
||||
Reference in New Issue
Block a user