Some checks failed
CI / test (push) Has been cancelled
- 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
27 lines
525 B
JSON
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"
|
|
}
|
|
}
|