UNPKG

@dotenv-run/core

Version:

core library to load environment variables with monorepo support

37 lines 975 B
{ "name": "@dotenv-run/core", "version": "1.3.8", "description": "core library to load environment variables with monorepo support", "homepage": "https://github.com/chihab/dotenv-run", "main": "dist/cjs/index.js", "module": "dist/esm/index.js", "types": "dist/index.d.ts", "files": [ "dist", "README.md" ], "keywords": [ "dotenv", "run", "cli" ], "author": "Chihab Otmani <chihab@gmail.com>", "license": "ISC", "dependencies": { "chalk": "^4.1.2", "dotenv": "^16.4.5", "dotenv-expand": "^10.0.0", "find-up": "^5.0.0" }, "devDependencies": { "@types/node": "^20.16.10" }, "scripts": { "dev": "tsc -w", "test": "vitest", "build": "concurrently npm:build:*", "build:esm": "tsc --module esnext --outDir dist/esm", "build:cjs": "tsc --module commonjs --outDir dist/cjs", "build:types": "tsc --emitDeclarationOnly --declaration --declarationMap --module esnext --outDir dist" } }