{
    "name": "envix",
    "version": "1.5.0",
    "description": "",
    "author": {
        "name": "Peter Placzek",
        "email": "contact@tada5hi.net",
        "url": "https://github.com/tada5hi"
    },
    "repository": {
        "type": "git",
        "url": "https://github.com/tada5hi/envix.git"
    },
    "main": "dist/index.cjs",
    "module": "dist/index.mjs",
    "types": "dist/index.d.ts",
    "exports": {
        "./package.json": "./package.json",
        ".": {
            "types": "./dist/index.d.ts",
            "import": "./dist/index.mjs",
            "require": "./dist/index.cjs"
        }
    },
    "files": [
        "dist"
    ],
    "engines": {
        "node": ">=18.0.0"
    },
    "scripts": {
        "build:types": "tsc --emitDeclarationOnly",
        "build:js": "rollup -c",
        "build": "rimraf dist && rimraf bin && npm run build:types && npm run build:js",
        "build:watch": "npm run build -- --watch",
        "test": "jest --config ./test/jest.config.js",
        "test:coverage": "cross-env NODE_ENV=test jest --config ./test/jest.config.js --coverage",
        "lint": "eslint",
        "lint:fix": "npm run lint -- --fix",
        "prepare": "husky install"
    },
    "keywords": [],
    "license": "MIT",
    "devDependencies": {
        "@rollup/plugin-node-resolve": "^15.2.3",
        "@rollup/plugin-swc": "^0.3.0",
        "@swc/jest": "^0.2.36",
        "@tada5hi/commitlint-config": "^1.1.7",
        "@tada5hi/eslint-config-typescript": "^1.2.9",
        "@tada5hi/semantic-release": "^0.3.1",
        "@tada5hi/tsconfig": "^0.5.0",
        "@types/jest": "^29.5.12",
        "cross-env": "^7.0.3",
        "eslint": "^8.56.0",
        "husky": "^9.0.10",
        "jest": "^29.7.0",
        "lint-staged": "^15.2.2",
        "rollup": "^4.9.6",
        "semantic-release": "^22.0.12",
        "typescript": "^5.3.3"
    },
    "lint-staged": {
        ".js": "npm run lint:fix",
        "*.ts": "npm run lint:fix"
    },
    "dependencies": {
        "std-env": "^3.7.0"
    }
}
