Files
dotenv-types/package.json
7000pctAUTO f1f5785d5a
Some checks failed
CI / test (push) Has been cancelled
fix: resolve CI test failures in schema-validator
- Created missing schema-validator.ts file
- Added enum type validation with options support
- Added 'yes'/'no' boolean value handling
- Fixed port type detection to take priority over number
2026-01-31 20:47:05 +00:00

27 lines
525 B
JSON

{
"name": "dotenv-types",
"version": "1.0.0",
"description": "Type-safe environment variable parsing and validation",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "jest",
"lint": "eslint src/**/*.ts"
},
"keywords": [
"dotenv",
"environment",
"typescript",
"validation",
"type-safe"
],
"author": "",
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.5.0",
"jest": "^29.7.0",
"typescript": "^5.0.0"
}
}