env-schema-checker
Version:
A zero-config, type-safe, schema-driven .env validator with automatic error reporting, autocomplete, and runtime checks
60 lines • 1.45 kB
JSON
{
"name": "env-schema-checker",
"version": "0.1.3",
"description": "A zero-config, type-safe, schema-driven .env validator with automatic error reporting, autocomplete, and runtime checks",
"repository": {
"type": "git",
"url": "https://github.com/chinmaydonarkar/env-schema-checker"
},
"homepage": "https://github.com/chinmaydonarkar/env-schema-checker#readme",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"bin": {
"env-schema-checker": "dist/cli.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"test": "jest",
"lint": "eslint src --ext .ts",
"format": "prettier --write \"src/**/*.ts\"",
"prepare": "npm run build"
},
"keywords": [
"env",
"environment",
"variables",
"validation",
"schema",
"typescript",
"dotenv",
"config"
],
"author": "",
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^20.11.24",
"@typescript-eslint/eslint-plugin": "^7.1.0",
"@typescript-eslint/parser": "^7.1.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"jest": "^29.7.0",
"prettier": "^3.2.5",
"ts-jest": "^29.1.2",
"tsup": "^8.0.2",
"typescript": "^5.3.3"
},
"dependencies": {
"commander": "^12.0.0",
"dotenv": "^16.4.5",
"zod": "^3.22.4"
},
"engines": {
"node": ">=14"
}
}