UNPKG

@runtime-env/cli

Version:

Build once, deploy anywhere. Startup/runtime environment variable solution for JavaScript.

52 lines (51 loc) 1.69 kB
{ "name": "@runtime-env/cli", "version": "1.2.0", "description": "Build once, deploy anywhere. Startup/runtime environment variable solution for JavaScript.", "license": "MIT", "author": "Ernest", "keywords": [ "twelve-factor", "import-meta-env", "json-schema" ], "bin": { "runtime-env": "bin/runtime-env.js" }, "files": [ "bin" ], "scripts": { "build": "rimraf bin && esbuild src/index.ts --define:import.meta.url=\\\"file:\\\" --define:process.env.NODE_ENV=\\\"production\\\" --bundle --outfile=bin/runtime-env.js --platform=node --target=node20 --banner:js=\"#!/usr/bin/env node\" --external:prettier --minify", "pack": "rm -f *.tgz && npm pack && node ../../scripts/rename-tgz.js", "release": "standard-version --skip.tag -t cli --preset=conventionalcommits --releaseCommitMessageFormat 'chore(release): @runtime-env/cli@{{currentTag}}' --path .", "test": "NODE_OPTIONS=\"$NODE_OPTIONS --experimental-vm-modules\" jest" }, "repository": { "type": "git", "url": "git+https://github.com/runtime-env/runtime-env.git", "directory": "packages/cli" }, "bugs": { "url": "https://github.com/runtime-env/runtime-env/issues" }, "homepage": "https://github.com/runtime-env/runtime-env#readme", "devDependencies": { "@types/jest": "30.0.0", "@types/tmp": "0.2.6", "esbuild": "0.28.0", "jest": "30.4.2", "rimraf": "6.1.3", "tmp": "0.2.6", "ts-jest": "29.4.11" }, "dependencies": { "ajv": "8.20.0", "ajv-formats": "3.0.1", "chokidar": "5.0.0", "commander": "14.0.3", "json-schema-to-typescript": "15.0.4", "lodash": "4.18.1", "prettier": "3.8.3" } }