{
  "version": "4.11.0",
  "project": "common",
  "name": "@achs/env",
  "title": "Environment Variables CLI Tool",
  "description": "Extensible environment variables handler for NodeJS apps",
  "author": "Alvear Candia, Cristopher Alejandro <caalvearc@achs.cl>",
  "private": false,
  "keywords": [
    "env",
    "node",
    "cli",
    "typescript"
  ],
  "dependencies": {
    "@achs/azure-key-vault": "^4.5.0",
    "ajv": "^8.18.0",
    "ajv-formats": "^3.0.1",
    "ci-info": "^4.4.0",
    "merge-deep": "^3.0.3",
    "picocolors": "^1.1.1",
    "subslate": "^1.0.0",
    "to-json-schema": "^0.2.5",
    "tslog": "^3.3.4",
    "yargs": "^17.7.2",
    "yargs-parser": "^21.1.1"
  },
  "devDependencies": {
    "@types/jest": "^29.5.12",
    "@types/merge-deep": "^3.0.3",
    "@types/node": "^22.1.0",
    "@types/to-json-schema": "^0.2.4",
    "@types/yargs": "^17.0.32",
    "@types/yargs-parser": "^21.0.3",
    "@typescript-eslint/eslint-plugin": "^6.20.0",
    "@typescript-eslint/parser": "^6.20.0",
    "copyfiles": "^2.4.1",
    "del-cli": "^5.1.0",
    "eslint": "^8.56.0",
    "eslint-config-prettier": "^9.1.0",
    "eslint-plugin-eslint-comments": "^3.2.0",
    "eslint-plugin-jest": "^27.6.3",
    "eslint-plugin-jest-formatting": "^3.1.0",
    "eslint-plugin-prettier": "^5.1.3",
    "eslint-plugin-promise": "^6.1.1",
    "eslint-plugin-sonarjs": "^0.23.0",
    "eslint-plugin-unicorn": "^50.0.1",
    "jest": "^29.7.0",
    "prettier": "^3.3.3",
    "ts-jest": "^29.2.4",
    "typescript": "^5.5.4"
  },
  "main": "index.js",
  "types": "index.d.ts",
  "bin": {
    "env": "main.js"
  },
  "engines": {
    "node": ">=18",
    "npm": ">=8",
    "pnpm": ">=7"
  },
  "config": {
    "delimiters": {
      "template": [
        "[[",
        "]]"
      ],
      "subcommand": [
        ":",
        ":"
      ]
    },
    "parser": {
      "short-option-groups": true,
      "camel-case-expansion": false,
      "dot-notation": true,
      "parse-numbers": true,
      "boolean-negation": false
    }
  },
  "scripts": {
    "build": "pnpm prebuild && tsc --p tsconfig.build.json && pnpm postbuild",
    "test": "jest --watchAll=false --verbose",
    "pub": "pnpm build && pnpm login && pnpm publish dist --access public",
    "lint": "eslint --ext .ts src/",
    "lint:fix": "eslint --fix --ext .ts, src/",
    "prebuild": "del-cli dist/**",
    "postbuild": "copyfiles package.json README.md LICENSE.md CHANGELOG.md schemas/env.schema.json schemas/settings.schema.json assets/* dist"
  }
}