@stryke/env 0.6.6 → 0.7.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/environment-checks.cjs +53 -5
- package/dist/environment-checks.d.ts +7 -0
- package/dist/environment-checks.mjs +1 -1
- package/dist/load-env.cjs +7 -7
- package/dist/load-env.mjs +1 -1
- package/dist/providers.cjs +3 -3
- package/dist/providers.mjs +1 -1
- package/dist/types.cjs +1 -1
- package/dist/types.mjs +1 -1
- package/package.json +7 -7
|
@@ -3,10 +3,12 @@
|
|
|
3
3
|
Object.defineProperty(exports, "__esModule", {
|
|
4
4
|
value: true
|
|
5
5
|
});
|
|
6
|
-
exports.
|
|
6
|
+
exports.isDevelopment = exports.isDebug = exports.isColorSupported = exports.hasTTY = void 0;
|
|
7
|
+
exports.isHyperlinkSupported = isHyperlinkSupported;
|
|
8
|
+
exports.platform = exports.nodeVersion = exports.nodeMajorVersion = exports.isWindows = exports.isTest = exports.isStaging = exports.isProduction = exports.isMinimal = exports.isMacOS = exports.isLinux = void 0;
|
|
7
9
|
var _ciChecks = require("./ci-checks.cjs");
|
|
8
|
-
const platform = exports.platform =
|
|
9
|
-
hasTTY = exports.hasTTY = !!(
|
|
10
|
+
const platform = exports.platform = process?.platform || "",
|
|
11
|
+
hasTTY = exports.hasTTY = !!(process?.stdout && process?.stdout.isTTY),
|
|
10
12
|
isDebug = exports.isDebug = !!process.env.DEBUG;
|
|
11
13
|
const o = process.env.STORM_MODE || process.env.NEXT_PUBLIC_VERCEL_ENV || process.env.NODE_ENV || "production";
|
|
12
14
|
const isProduction = exports.isProduction = ["prd", "prod", "production"].includes(o?.toLowerCase()),
|
|
@@ -17,6 +19,52 @@ const isProduction = exports.isProduction = ["prd", "prod", "production"].includ
|
|
|
17
19
|
isWindows = exports.isWindows = /^win/i.test(platform),
|
|
18
20
|
isLinux = exports.isLinux = /^linux/i.test(platform),
|
|
19
21
|
isMacOS = exports.isMacOS = /^darwin/i.test(platform),
|
|
20
|
-
isColorSupported = exports.isColorSupported = !process.env.NO_COLOR && (!!process.env.FORCE_COLOR || (hasTTY || isWindows) && process.env.TERM !== "dumb" || (0, _ciChecks.isCI)())
|
|
21
|
-
|
|
22
|
+
isColorSupported = exports.isColorSupported = !process.env.NO_COLOR && (!!process.env.FORCE_COLOR || (hasTTY || isWindows) && process.env.TERM !== "dumb" || (0, _ciChecks.isCI)());
|
|
23
|
+
function t(s = "") {
|
|
24
|
+
if (/^\d{3,4}$/.test(s)) {
|
|
25
|
+
const r = /(\d{1,2})(\d{2})/.exec(s) ?? [];
|
|
26
|
+
return {
|
|
27
|
+
major: 0,
|
|
28
|
+
minor: Number.parseInt(r[1], 10),
|
|
29
|
+
patch: Number.parseInt(r[2], 10)
|
|
30
|
+
};
|
|
31
|
+
}
|
|
32
|
+
const e = (s ?? "").split(".").map(r => Number.parseInt(r, 10));
|
|
33
|
+
return {
|
|
34
|
+
major: e[0],
|
|
35
|
+
minor: e[1],
|
|
36
|
+
patch: e[2]
|
|
37
|
+
};
|
|
38
|
+
}
|
|
39
|
+
function isHyperlinkSupported(s = process.stdout) {
|
|
40
|
+
if (process.env.FORCE_HYPERLINK) return !(process.env.FORCE_HYPERLINK.length > 0 && Number.parseInt(process.env.FORCE_HYPERLINK, 10) === 0);
|
|
41
|
+
if (process.env.NETLIFY) return !0;
|
|
42
|
+
if (isColorSupported) {
|
|
43
|
+
if (s && !s.isTTY) return !1;
|
|
44
|
+
if ("WT_SESSION" in process.env) return !0;
|
|
45
|
+
if (process.platform === "win32") return !1;
|
|
46
|
+
if ((0, _ciChecks.isCI)()) return !1;
|
|
47
|
+
if (process.env.TEAMCITY_VERSION) return !1;
|
|
48
|
+
if (process.env.TERM_PROGRAM) {
|
|
49
|
+
const e = t(process.env.TERM_PROGRAM_VERSION);
|
|
50
|
+
switch (process.env.TERM_PROGRAM) {
|
|
51
|
+
case "iTerm.app":
|
|
52
|
+
return e.major === 3 ? e.minor !== void 0 && e.minor >= 1 : e.major !== void 0 && e.major > 3;
|
|
53
|
+
case "WezTerm":
|
|
54
|
+
return e.major !== void 0 && e.major >= 20200620;
|
|
55
|
+
case "vscode":
|
|
56
|
+
return process.env.CURSOR_TRACE_ID ? !0 : e.minor !== void 0 && e.major !== void 0 && (e.major > 1 || e.major === 1 && e.minor >= 72);
|
|
57
|
+
case "ghostty":
|
|
58
|
+
return !0;
|
|
59
|
+
}
|
|
60
|
+
}
|
|
61
|
+
} else return !1;
|
|
62
|
+
if (process.env.VTE_VERSION) {
|
|
63
|
+
if (process.env.VTE_VERSION === "0.50.0") return !1;
|
|
64
|
+
const e = t(process.env.VTE_VERSION);
|
|
65
|
+
return e.major !== void 0 && e.major > 0 || e.minor !== void 0 && e.minor >= 50;
|
|
66
|
+
}
|
|
67
|
+
return process.env.TERM === "alacritty";
|
|
68
|
+
}
|
|
69
|
+
const nodeVersion = exports.nodeVersion = (process?.versions?.node || "").replace(/^v/, "") || null,
|
|
22
70
|
nodeMajorVersion = exports.nodeMajorVersion = Number(nodeVersion?.split(".")[0]) || null;
|
|
@@ -22,6 +22,13 @@ export declare const isLinux: boolean;
|
|
|
22
22
|
export declare const isMacOS: boolean;
|
|
23
23
|
/** Color Support */
|
|
24
24
|
export declare const isColorSupported: boolean;
|
|
25
|
+
/**
|
|
26
|
+
* Check if the current environment supports hyperlinks in the terminal.
|
|
27
|
+
*
|
|
28
|
+
* @param stream - The stream to check for TTY support (default: process.stdout)
|
|
29
|
+
* @returns Whether hyperlinks are supported
|
|
30
|
+
*/
|
|
31
|
+
export declare function isHyperlinkSupported(stream?: NodeJS.WriteStream): boolean;
|
|
25
32
|
/** Node.js versions */
|
|
26
33
|
export declare const nodeVersion: string | null;
|
|
27
34
|
export declare const nodeMajorVersion: number | null;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{isCI as
|
|
1
|
+
import{isCI as n}from"./ci-checks";export const platform=process?.platform||"",hasTTY=!!(process?.stdout&&process?.stdout.isTTY),isDebug=!!process.env.DEBUG;const o=process.env.STORM_MODE||process.env.NEXT_PUBLIC_VERCEL_ENV||process.env.NODE_ENV||"production";export const isProduction=["prd","prod","production"].includes(o?.toLowerCase()),isStaging=["stg","stage","staging"].includes(o?.toLowerCase()),isDevelopment=["dev","development"].includes(o?.toLowerCase()),isTest=["tst","test","testing"].includes(o?.toLowerCase())||isStaging||!!process.env.TEST,isMinimal=!!process.env.MINIMAL||n()||isTest||!hasTTY,isWindows=/^win/i.test(platform),isLinux=/^linux/i.test(platform),isMacOS=/^darwin/i.test(platform),isColorSupported=!process.env.NO_COLOR&&(!!process.env.FORCE_COLOR||(hasTTY||isWindows)&&process.env.TERM!=="dumb"||n());function t(s=""){if(/^\d{3,4}$/.test(s)){const r=/(\d{1,2})(\d{2})/.exec(s)??[];return{major:0,minor:Number.parseInt(r[1],10),patch:Number.parseInt(r[2],10)}}const e=(s??"").split(".").map(r=>Number.parseInt(r,10));return{major:e[0],minor:e[1],patch:e[2]}}export function isHyperlinkSupported(s=process.stdout){if(process.env.FORCE_HYPERLINK)return!(process.env.FORCE_HYPERLINK.length>0&&Number.parseInt(process.env.FORCE_HYPERLINK,10)===0);if(process.env.NETLIFY)return!0;if(isColorSupported){if(s&&!s.isTTY)return!1;if("WT_SESSION"in process.env)return!0;if(process.platform==="win32")return!1;if(n())return!1;if(process.env.TEAMCITY_VERSION)return!1;if(process.env.TERM_PROGRAM){const e=t(process.env.TERM_PROGRAM_VERSION);switch(process.env.TERM_PROGRAM){case"iTerm.app":return e.major===3?e.minor!==void 0&&e.minor>=1:e.major!==void 0&&e.major>3;case"WezTerm":return e.major!==void 0&&e.major>=20200620;case"vscode":return process.env.CURSOR_TRACE_ID?!0:e.minor!==void 0&&e.major!==void 0&&(e.major>1||e.major===1&&e.minor>=72);case"ghostty":return!0}}}else return!1;if(process.env.VTE_VERSION){if(process.env.VTE_VERSION==="0.50.0")return!1;const e=t(process.env.VTE_VERSION);return e.major!==void 0&&e.major>0||e.minor!==void 0&&e.minor>=50}return process.env.TERM==="alacritty"}export const nodeVersion=(process?.versions?.node||"").replace(/^v/,"")||null,nodeMajorVersion=Number(nodeVersion?.split(".")[0])||null;
|
package/dist/load-env.cjs
CHANGED
|
@@ -20,11 +20,11 @@ function getEnvFilesForMode(t, r = "production") {
|
|
|
20
20
|
}
|
|
21
21
|
async function loadEnvFile(t, r = []) {
|
|
22
22
|
const s = Array.isArray(r) ? r : [r];
|
|
23
|
-
return (await Promise.all((r.length > 0 ? s.map(n => (0, _path.joinPaths)(n, t)) : [t]).map(n => {
|
|
23
|
+
return (await Promise.all((r.length > 0 ? s.map(n => (0, _path.joinPaths)(n, t)) : [t]).map(async n => {
|
|
24
24
|
if ((0, _path.existsSync)(n)) return (0, _readFile.readFile)(n);
|
|
25
|
-
}))).reduce((n,
|
|
26
|
-
if (!
|
|
27
|
-
const a = (0, _dotenvx.parse)(
|
|
25
|
+
}))).reduce((n, c) => {
|
|
26
|
+
if (!c) return n;
|
|
27
|
+
const a = (0, _dotenvx.parse)(c, {
|
|
28
28
|
processEnv: {
|
|
29
29
|
...process.env
|
|
30
30
|
},
|
|
@@ -36,14 +36,14 @@ async function loadEnvFile(t, r = []) {
|
|
|
36
36
|
async function loadEnv(t, r, s) {
|
|
37
37
|
if (r === "local") throw new Error('"local" cannot be used as a mode name because it conflicts with the .local postfix for .env files.');
|
|
38
38
|
const n = s ? Array.isArray(s) ? s : [s] : [],
|
|
39
|
-
|
|
39
|
+
c = Array.isArray(t) ? t : [t],
|
|
40
40
|
a = {},
|
|
41
|
-
v =
|
|
41
|
+
v = c.reduce((e, i) => (e.push(...getEnvFilesForMode(i, r).filter(u => !e.includes(u))), e), []);
|
|
42
42
|
let o = (await Promise.all(v.map(async e => loadEnvFile(e)))).reduce((e, i) => (0, _defu.default)(i, e), {});
|
|
43
43
|
if (o.NODE_ENV && process.env.VITE_USER_NODE_ENV === void 0 && (process.env.VITE_USER_NODE_ENV = _json.StormJSON.stringify(o.NODE_ENV)), o.BROWSER && process.env.BROWSER === void 0 && (process.env.BROWSER = _json.StormJSON.stringify(o.BROWSER)), o.BROWSER_ARGS && process.env.BROWSER_ARGS === void 0 && (process.env.BROWSER_ARGS = _json.StormJSON.stringify(o.BROWSER_ARGS)), o = (0, _defu.default)({
|
|
44
44
|
...process.env
|
|
45
45
|
}, o), n.length === 0) return o;
|
|
46
|
-
for (const [e, i] of Object.entries(o)) n.some(
|
|
46
|
+
for (const [e, i] of Object.entries(o)) n.some(u => e.startsWith(u)) && (a[e] = String(i));
|
|
47
47
|
for (const e in process.env) n.some(i => e.startsWith(i)) && (a[e] = process.env[e]);
|
|
48
48
|
return a;
|
|
49
49
|
}
|
package/dist/load-env.mjs
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
import{parse as l}from"@dotenvx/dotenvx";import{readFile as m}from"@stryke/fs/read-file";import{StormJSON as p}from"@stryke/json";import{existsSync as g,joinPaths as E}from"@stryke/path";import f from"defu";import{ENV_PREFIXES as R}from"./types";export function getEnvFilesForMode(t,r="production"){return[".env",".env.local",`.env.${r}`,`.env.${r}.local`,`.env.local.${r}`].map(s=>E(t,s))}export async function loadEnvFile(t,r=[]){const s=Array.isArray(r)?r:[r];return(await Promise.all((r.length>0?s.map(n=>E(n,t)):[t]).map(n=>{if(g(n))return m(n)}))).reduce((n,
|
|
1
|
+
import{parse as l}from"@dotenvx/dotenvx";import{readFile as m}from"@stryke/fs/read-file";import{StormJSON as p}from"@stryke/json";import{existsSync as g,joinPaths as E}from"@stryke/path";import f from"defu";import{ENV_PREFIXES as R}from"./types";export function getEnvFilesForMode(t,r="production"){return[".env",".env.local",`.env.${r}`,`.env.${r}.local`,`.env.local.${r}`].map(s=>E(t,s))}export async function loadEnvFile(t,r=[]){const s=Array.isArray(r)?r:[r];return(await Promise.all((r.length>0?s.map(n=>E(n,t)):[t]).map(async n=>{if(g(n))return m(n)}))).reduce((n,c)=>{if(!c)return n;const a=l(c,{processEnv:{...process.env},privateKey:process.env.DOTENV_PRIVATE_KEY||process.env.STORM_PRIVATE_KEY});return f(a,n)},{})}export async function loadEnv(t,r,s){if(r==="local")throw new Error('"local" cannot be used as a mode name because it conflicts with the .local postfix for .env files.');const n=s?Array.isArray(s)?s:[s]:[],c=Array.isArray(t)?t:[t],a={},v=c.reduce((e,i)=>(e.push(...getEnvFilesForMode(i,r).filter(u=>!e.includes(u))),e),[]);let o=(await Promise.all(v.map(async e=>loadEnvFile(e)))).reduce((e,i)=>f(i,e),{});if(o.NODE_ENV&&process.env.VITE_USER_NODE_ENV===void 0&&(process.env.VITE_USER_NODE_ENV=p.stringify(o.NODE_ENV)),o.BROWSER&&process.env.BROWSER===void 0&&(process.env.BROWSER=p.stringify(o.BROWSER)),o.BROWSER_ARGS&&process.env.BROWSER_ARGS===void 0&&(process.env.BROWSER_ARGS=p.stringify(o.BROWSER_ARGS)),o=f({...process.env},o),n.length===0)return o;for(const[e,i]of Object.entries(o))n.some(u=>e.startsWith(u))&&(a[e]=String(i));for(const e in process.env)n.some(i=>e.startsWith(i))&&(a[e]=process.env[e]);return a}export async function loadClientEnv(t,r,s=R){return loadEnv(t,r,s)}export async function loadServerEnv(t,r){return loadEnv(t,r)}
|
package/dist/providers.cjs
CHANGED
|
@@ -22,14 +22,14 @@ const r = [["APPVEYOR"], ["AWS_AMPLIFY", "AWS_APP_ID", {
|
|
|
22
22
|
ci: !0
|
|
23
23
|
}]];
|
|
24
24
|
function I() {
|
|
25
|
-
if (
|
|
25
|
+
if (process?.env) for (const e of r) {
|
|
26
26
|
const E = e[1] || e[0];
|
|
27
|
-
if (
|
|
27
|
+
if (process?.env[E]) return {
|
|
28
28
|
name: e[0].toLowerCase(),
|
|
29
29
|
...e[2]
|
|
30
30
|
};
|
|
31
31
|
}
|
|
32
|
-
return
|
|
32
|
+
return process?.env?.SHELL === "/bin/jsh" && process?.versions?.webcontainer ? {
|
|
33
33
|
name: "stackblitz",
|
|
34
34
|
ci: !1
|
|
35
35
|
} : {
|
package/dist/providers.mjs
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
const r=[["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"],["DENO-DEPLOY","DENO_DEPLOYMENT_ID"],["FIREBASE_APP_HOSTING","FIREBASE_APP_HOSTING",{ci:!0}]];function I(){if(
|
|
1
|
+
const r=[["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"],["DENO-DEPLOY","DENO_DEPLOYMENT_ID"],["FIREBASE_APP_HOSTING","FIREBASE_APP_HOSTING",{ci:!0}]];function I(){if(process?.env)for(const e of r){const E=e[1]||e[0];if(process?.env[E])return{name:e[0].toLowerCase(),...e[2]}}return process?.env?.SHELL==="/bin/jsh"&&process?.versions?.webcontainer?{name:"stackblitz",ci:!1}:{name:"",ci:!1}}export const providerInfo=I(),provider=providerInfo.name;
|
package/dist/types.cjs
CHANGED
|
@@ -4,4 +4,4 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
4
4
|
value: true
|
|
5
5
|
});
|
|
6
6
|
exports.ENV_PREFIXES = void 0;
|
|
7
|
-
const ENV_PREFIXES = exports.ENV_PREFIXES = ["VITE_", "ONE_", "STORM_PUBLIC_", "STORM_", "NEXT_PUBLIC_"];
|
|
7
|
+
const ENV_PREFIXES = exports.ENV_PREFIXES = ["VITE_", "ONE_", "STORM_PUBLIC_", "STORM_", "STORM_STACK_PUBLIC_", "STORM_STACK_", "NEXT_PUBLIC_"];
|
package/dist/types.mjs
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const ENV_PREFIXES=["VITE_","ONE_","STORM_PUBLIC_","STORM_","NEXT_PUBLIC_"];
|
|
1
|
+
export const ENV_PREFIXES=["VITE_","ONE_","STORM_PUBLIC_","STORM_","STORM_STACK_PUBLIC_","STORM_STACK_","NEXT_PUBLIC_"];
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stryke/env",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.7.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "A package containing utility functions to handle environment specific processes",
|
|
6
6
|
"repository": {
|
|
@@ -12,13 +12,13 @@
|
|
|
12
12
|
"dependencies": {
|
|
13
13
|
"@dotenvx/dotenvx": "1.35.0",
|
|
14
14
|
"defu": "^6.1.4",
|
|
15
|
-
"@stryke/fs": "^0.
|
|
16
|
-
"@stryke/json": "^0.8.
|
|
17
|
-
"@stryke/path": "^0.4.
|
|
18
|
-
"@stryke/string-format": "^0.4.
|
|
19
|
-
"@stryke/type-checks": "^0.3.
|
|
15
|
+
"@stryke/fs": "^0.13.0",
|
|
16
|
+
"@stryke/json": "^0.8.2",
|
|
17
|
+
"@stryke/path": "^0.4.14",
|
|
18
|
+
"@stryke/string-format": "^0.4.9",
|
|
19
|
+
"@stryke/type-checks": "^0.3.3"
|
|
20
20
|
},
|
|
21
|
-
"devDependencies": { "@types/node": "^22.
|
|
21
|
+
"devDependencies": { "@types/node": "^22.14.0" },
|
|
22
22
|
"publishConfig": { "access": "public" },
|
|
23
23
|
"sideEffects": false,
|
|
24
24
|
"files": ["dist/**/*"],
|