env-native
Version:
Minimalistic, dependency-free .env file loader using the native util.parseEnv function from Node.js. Much faster than dotenv. Also supports CLI.
80 lines (79 loc) • 1.83 kB
JSON
{
"name": "env-native",
"version": "1.1.2",
"description": "Minimalistic, dependency-free .env file loader using the native util.parseEnv function from Node.js. Much faster than dotenv. Also supports CLI.",
"keywords": [
"env",
".env",
"dotenv",
"dotenvx",
"config",
"settings",
"environment",
"variables",
"environment-variables",
"env-loader",
"dotenv-replacement",
"util.parseEnv",
"native",
"nodejs",
"zero-dependency",
"lightweight",
"minimal",
"fast",
"secure",
"env cli",
"cli"
],
"homepage": "https://github.com/sefinek/env-native#readme",
"bugs": {
"url": "https://github.com/sefinek/env-native/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sefinek/env-native.git"
},
"funding": {
"type": "individual",
"url": "https://sefinek.net/donate"
},
"license": "MIT",
"author": "Sefinek <contact@sefinek.net> (https://sefinek.net)",
"type": "module",
"exports": {
".": {
"types": "./index.d.ts",
"require": "./index.js",
"default": "./index.js"
}
},
"main": "index.js",
"types": "index.d.ts",
"bin": {
"enative": "cli.js",
"env-native": "cli.js"
},
"directories": {
"example": "examples",
"test": "test"
},
"files": [
"index.js",
"index.d.ts",
"README.md",
"LICENSE"
],
"scripts": {
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"up": "ncu -u && npm install && npm update && npm audit fix"
},
"devDependencies": {
"@eslint/js": "^9.32.0",
"@jest/globals": "^30.0.5",
"globals": "^16.3.0",
"jest": "^30.0.5"
},
"engines": {
"node": ">=20.12.0"
}
}