UNPKG

zod-search-params

Version:
86 lines (85 loc) 2.31 kB
{ "name": "zod-search-params", "version": "0.2.1", "private": false, "description": "Zod utility for parsing search params", "license": "MIT", "repository": { "type": "git", "url": "https://github.com/theboxer/zod-search-params" }, "bugs": { "url": "https://github.com/theboxer/zod-search-params/issues" }, "funding": "https://github.com/sponsors/theboxer", "homepage": "https://github.com/theboxer/zod-search-params", "keywords": [ "zod", "search params", "query params", "url search params", "url query params", "next.js", "nextjs", "react" ], "main": "lib/v3/index.js", "types": "lib/v3/index.d.ts", "exports": { ".": { "import": "./lib/v3/index.js", "require": "./lib/v3/index.js", "types": "./lib/v3/index.d.ts" }, "./v3": { "import": "./lib/v3/index.js", "require": "./lib/v3/index.js", "types": "./lib/v3/index.d.ts" }, "./v4": { "import": "./lib/v4/index.js", "require": "./lib/v4/index.js", "types": "./lib/v4/index.d.ts" } }, "files": [ "lib/**/*" ], "engines": { "node": ">=18" }, "scripts": { "build": "tsc --project tsconfig.build.json", "format": "prettier --write 'src/**/*.ts'", "format:check": "prettier 'src/**/*.ts'", "lint": "eslint 'src/**/*.ts'", "lint:fix": "eslint --fix 'src/**/*.ts'", "test": "jest", "test:types": "tsc --noEmit --esModuleInterop --skipLibCheck --strict src/test/**/types.ts", "test:watch": "jest --watchAll", "prepare": "yarn build", "prepublishOnly": "yarn test && yarn lint", "preversion": "yarn lint", "version": "yarn format && git add -A src", "postversion": "git push && git push --tags" }, "devDependencies": { "@types/jest": "^29.5.8", "@typescript-eslint/eslint-plugin": "^6.4.1", "@typescript-eslint/parser": "^6.4.1", "eslint-config-prettier": "^9.0.0", "eslint-plugin-import": "^2.28.1", "eslint-plugin-prettier": "^5.0.0", "eslint-plugin-unicorn": "^48.0.1", "jest": "^29.7.0", "prettier": "^3.0.2", "ts-jest": "^29.1.1", "ts-node": "^10.9.1", "zod": "^4.1.5", "eslint": "^8.52.0", "typescript": "^5.2.2" }, "peerDependencies": { "zod": "^3.25.0 || ^4.0.0" } }