UNPKG

zennv

Version:

Parses environment variables using a Zod schema for type and runtime validation

76 lines (75 loc) 1.53 kB
{ "version": "0.1.1", "license": "MIT", "main": "dist/index.js", "typings": "dist/index.d.ts", "files": [ "dist", "src" ], "engines": { "node": ">=10" }, "scripts": { "start": "tsdx watch", "build": "tsdx build", "test": "tsdx test", "lint": "tsdx lint", "prepare": "tsdx build", "size": "size-limit", "analyze": "size-limit --why" }, "husky": { "hooks": { "pre-commit": "tsdx lint" } }, "prettier": { "printWidth": 80, "semi": true, "singleQuote": true, "trailingComma": "es5" }, "name": "zennv", "author": "Tom Nagle", "module": "dist/zenv.esm.js", "size-limit": [ { "path": "dist/zenv.cjs.production.min.js", "limit": "10 KB" }, { "path": "dist/zenv.esm.js", "limit": "10 KB" } ], "devDependencies": { "@size-limit/preset-small-lib": "^8.2.4", "husky": "^8.0.3", "size-limit": "^8.2.4", "tsdx": "^0.14.1", "tslib": "^2.5.0", "typescript": "^3.9.10" }, "dependencies": { "dotenv": "^16.0.3", "zod": "^3.21.4" }, "description": "Parses environment variables using a Zod schema for type and runtime validation", "directories": { "test": "test" }, "repository": { "type": "git", "url": "git+https://github.com/tomanagle/zennv.git" }, "keywords": [ "zod", "env", "dotenv" ], "bugs": { "url": "https://github.com/tomanagle/zennv/issues" }, "homepage": "https://github.com/tomanagle/zennv#readme" }