morphix-env 0.6.0-beta.1 → 0.6.0-beta.2
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/cli.js +71 -1
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -37182,8 +37182,78 @@ var StreamingRedactor = class {
|
|
|
37182
37182
|
}
|
|
37183
37183
|
};
|
|
37184
37184
|
|
|
37185
|
+
// package.json
|
|
37186
|
+
var package_default = {
|
|
37187
|
+
name: "morphix-env",
|
|
37188
|
+
version: "0.6.0-beta.2",
|
|
37189
|
+
description: "Environment variable toolkit \u2014 Infisical integration, local overrides, and client-side runtime injection for Next.js / Vite / Express.",
|
|
37190
|
+
author: "MorphixAI <dev@morphixai.com>",
|
|
37191
|
+
homepage: "https://github.com/Morphicai/morphix-env#readme",
|
|
37192
|
+
repository: {
|
|
37193
|
+
type: "git",
|
|
37194
|
+
url: "git+https://github.com/Morphicai/morphix-env.git"
|
|
37195
|
+
},
|
|
37196
|
+
bugs: {
|
|
37197
|
+
url: "https://github.com/Morphicai/morphix-env/issues"
|
|
37198
|
+
},
|
|
37199
|
+
bin: {
|
|
37200
|
+
"morphix-env": "./dist/cli.js",
|
|
37201
|
+
"mx-env": "./dist/cli.js"
|
|
37202
|
+
},
|
|
37203
|
+
scripts: {
|
|
37204
|
+
build: "node scripts/build-editor-ui.mjs && tsup src/cli.ts --format cjs --dts --clean --external keytar",
|
|
37205
|
+
dev: "node scripts/build-editor-ui.mjs && tsup src/cli.ts --format cjs --watch",
|
|
37206
|
+
pretest: "pnpm build",
|
|
37207
|
+
test: "vitest run",
|
|
37208
|
+
"test:watch": "vitest",
|
|
37209
|
+
prepublishOnly: "pnpm build && pnpm test"
|
|
37210
|
+
},
|
|
37211
|
+
files: [
|
|
37212
|
+
"dist"
|
|
37213
|
+
],
|
|
37214
|
+
keywords: [
|
|
37215
|
+
"env",
|
|
37216
|
+
"dotenv",
|
|
37217
|
+
"environment-variables",
|
|
37218
|
+
"cross-env",
|
|
37219
|
+
"infisical",
|
|
37220
|
+
"secrets",
|
|
37221
|
+
"runtime-env",
|
|
37222
|
+
"nextjs",
|
|
37223
|
+
"vite",
|
|
37224
|
+
"docker",
|
|
37225
|
+
"cli"
|
|
37226
|
+
],
|
|
37227
|
+
license: "MIT",
|
|
37228
|
+
engines: {
|
|
37229
|
+
node: ">=18"
|
|
37230
|
+
},
|
|
37231
|
+
devDependencies: {
|
|
37232
|
+
"@dotenvx/dotenvx": "2.30.0",
|
|
37233
|
+
"@radix-ui/react-alert-dialog": "^1.1.0",
|
|
37234
|
+
"@radix-ui/react-select": "^2.1.0",
|
|
37235
|
+
"@types/cross-spawn": "^6.0.6",
|
|
37236
|
+
"@types/react": "^19.1.0",
|
|
37237
|
+
"@types/react-dom": "^19.1.0",
|
|
37238
|
+
esbuild: "^0.27.0",
|
|
37239
|
+
react: "^19.1.0",
|
|
37240
|
+
"react-dom": "^19.1.0",
|
|
37241
|
+
tsup: "^8.0.0",
|
|
37242
|
+
typescript: "^5.0.0",
|
|
37243
|
+
vitest: "^4.1.1"
|
|
37244
|
+
},
|
|
37245
|
+
dependencies: {
|
|
37246
|
+
"@infisical/sdk": "^5.0.0",
|
|
37247
|
+
"cross-spawn": "^7.0.6",
|
|
37248
|
+
dotenv: "^17.3.1"
|
|
37249
|
+
},
|
|
37250
|
+
optionalDependencies: {
|
|
37251
|
+
keytar: "7.9.0"
|
|
37252
|
+
}
|
|
37253
|
+
};
|
|
37254
|
+
|
|
37185
37255
|
// src/cli.ts
|
|
37186
|
-
var VERSION =
|
|
37256
|
+
var VERSION = package_default.version;
|
|
37187
37257
|
function parseArgs(argv) {
|
|
37188
37258
|
const args = {
|
|
37189
37259
|
command: "",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "morphix-env",
|
|
3
|
-
"version": "0.6.0-beta.
|
|
3
|
+
"version": "0.6.0-beta.2",
|
|
4
4
|
"description": "Environment variable toolkit — Infisical integration, local overrides, and client-side runtime injection for Next.js / Vite / Express.",
|
|
5
5
|
"author": "MorphixAI <dev@morphixai.com>",
|
|
6
6
|
"homepage": "https://github.com/Morphicai/morphix-env#readme",
|