{
  "name": "alp-params",
  "version": "6.2.0",
  "description": "Validate params from query, router or post body in koa 2",
  "keywords": [
    "alp"
  ],
  "author": "Christophe Hurpeau <christophe@hurpeau.com> (http://christophe.hurpeau.com/)",
  "license": "ISC",
  "repository": {
    "type": "git",
    "url": "https://github.com/christophehurpeau/alp.git",
    "directory": "packages/alp-params"
  },
  "homepage": "https://github.com/christophehurpeau/alp",
  "bugs": {
    "url": "https://github.com/alpjs/alp-params/issues"
  },
  "type": "module",
  "engines": {
    "node": ">=18.12.0"
  },
  "sideEffects": false,
  "main": "./dist/index-node18.mjs",
  "types": "./dist/definitions/index.d.ts",
  "module": "./dist/index-browser.es.js",
  "browser": "./dist/index-browser.es.js",
  "exports": {
    "./package.json": "./package.json",
    ".": {
      "types": "./dist/definitions/index.d.ts",
      "node": {
        "import": "./dist/index-node18.mjs"
      },
      "browser": {
        "import": "./dist/index-browser.es.js"
      }
    }
  },
  "files": [
    "src",
    "dist"
  ],
  "scripts": {
    "build": "yarn clean:build && rollup --config rollup.config.mjs && yarn run build:definitions",
    "build:definitions": "tsc -p tsconfig.json",
    "clean": "yarn clean:build",
    "clean:build": "pob-babel-clean-out dist",
    "lint": "yarn run lint:eslint",
    "lint:eslint": "yarn ../.. run eslint --report-unused-disable-directives --resolve-plugins-relative-to . --quiet packages/alp-params",
    "test": "yarn ../../ run test -- packages/alp-params",
    "watch": "yarn clean:build && rollup --config rollup.config.mjs --watch"
  },
  "browserslist": {
    "production": [
      "defaults",
      "> 0.2%",
      "not ie < 12",
      "not safari < 10",
      "not ios_saf < 10"
    ]
  },
  "pob": {
    "babelEnvs": [
      {
        "target": "node",
        "version": "18"
      },
      {
        "target": "browser"
      }
    ],
    "entries": [
      "index"
    ]
  },
  "prettier": "@pob/root/prettier-config",
  "peerDependencies": {
    "router-segments": "^9.1.0"
  },
  "dependencies": {
    "@babel/runtime": "^7.23.7",
    "alp-router": "7.2.0",
    "alp-types": "3.1.1",
    "object-properties": "^8.0.0"
  },
  "devDependencies": {
    "@babel/core": "7.23.7",
    "@babel/preset-env": "7.23.7",
    "pob-babel": "38.0.2",
    "typescript": "5.3.3"
  }
}