UNPKG

envars

Version:

Load environment variables from .env files. Decode secret values from AWS Secrets Manager, Google Secret Manager, and other sources.

91 lines (90 loc) 2.02 kB
{ "name": "envars", "version": "1.1.1", "packageManager": "yarn@4.5.3", "description": "Load environment variables from .env files. Decode secret values from AWS Secrets Manager, Google Secret Manager, and other sources.", "keywords": [ ".env", "aws", "cloud", "config", "dotenv", "env", "environment variables", "environment", "expand", "gcp", "google", "secret manager", "secret", "secrets management", "secrets", "variables", "vite" ], "license": "MIT", "author": { "name": "Kriasoft", "email": "hello@kriasoft.com", "url": "https://kriasoft.com" }, "repository": "github:kriasoft/envars", "contributors": [ "Konstantin Tarkus <koistya@kriasoft.com>" ], "funding": { "type": "github", "url": "https://github.com/sponsors/koistya" }, "type": "module", "exports": { ".": { "types": "./index.d.ts", "default": "./index.js" }, "./package.json": "./package.json" }, "scripts": { "lint": "eslint --report-unused-disable-directives .", "test": "ava" }, "dependencies": { "@google-cloud/secret-manager": "^5.6.0", "dotenv": "^16.4.7", "dotenv-expand": "^12.0.1", "esbuild": "^0.24.2", "module-from-string": "^3.3.1", "parent-module": "^3.1.0", "read-pkg-up": "^11.0.0" }, "devDependencies": { "@eslint/js": "^9.17.0", "@typescript-eslint/eslint-plugin": "^8.18.1", "@typescript-eslint/parser": "^8.18.1", "ava": "^6.2.0", "envalid": "^8.0.0", "eslint": "^9.17.0", "eslint-config-prettier": "^9.1.0", "globals": "^15.14.0", "prettier": "^3.4.2", "typescript": "^5.7.2", "typescript-eslint": "^8.18.1" }, "prettier": { "printWidth": 80, "tabWidth": 2, "useTabs": false, "semi": true, "singleQuote": false }, "ava": { "workerThreads": false, "watchMode": { "ignoreChanges": [ ".env.*", ".env", "env.ts" ] } } }