UNPKG

@st4rbugs/ensure-env

Version:
62 lines 1.67 kB
{ "name": "@st4rbugs/ensure-env", "version": "0.2.1", "main": "./dist/index.js", "module": "./dist/index.mjs", "types": "./dist/index.d.ts", "exports": { ".": { "types": { "require": "./dist/index.d.ts", "import": "./dist/index.d.mts" }, "import": "./dist/index.mjs", "require": "./dist/index.js" } }, "sideEffects": false, "license": "MIT", "files": [ "dist/**" ], "devDependencies": { "@types/node": "^20.11.24", "@vitest/coverage-v8": "^2.1.8", "eslint": "^9.17.0", "tsup": "^8.0.2", "typescript": "5.5.4", "vitest": "^2.1.8", "@st4rbugs/eslint-config": "0.0.1", "@st4rbugs/ts-config": "0.0.1" }, "publishConfig": { "access": "public" }, "description": "Type-Safe Env Validator and Parser", "repository": { "type": "git", "url": "git+https://github.com/anurag-bharati/rootnode.git#main" }, "keywords": [ "env", "typescript", "node", "env-parser", "env-validator" ], "author": "Anurag Bharati", "bugs": { "url": "https://github.com/anurag-bharati/rootnode/issues" }, "homepage": "https://github.com/anurag-bharati/rootnode/tree/main#readme", "scripts": { "build": "tsup src/index.ts --format esm,cjs --dts", "dev": "tsup src/index.ts --format esm,cjs --watch --dts", "test": "vitest run", "test:dev": "vitest --watch", "test:cov": "vitest run --coverage", "lint": "eslint --cache --max-warnings=0 src", "lint:fix": "eslint --fix --cache --max-warnings=0 src", "clean": "rimraf .turbo && rimraf node_modules && rimraf dist && rimraf .eslintcache && rimraf coverage" } }