ak-zod-form-kit
Version:
A powerful utility library for processing, transforming, and validating form data with Zod.
85 lines (84 loc) • 2.42 kB
JSON
{
"name": "ak-zod-form-kit",
"version": "1.0.5",
"description": "A powerful utility library for processing, transforming, and validating form data with Zod.",
"keywords": [
"zod",
"form",
"validation",
"typescript",
"formdata",
"react",
"vue",
"angular",
"form-handling",
"data-transformation",
"utility"
],
"homepage": "https://github.com/AndersonKouadio/ak-zod-form-kit#readme",
"bugs": {
"url": "https://github.com/AndersonKouadio/ak-zod-form-kit/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AndersonKouadio/ak-zod-form-kit.git"
},
"license": "MIT",
"author": "Anderson Kouadio <andersonkouadio0109@gmail.com>",
"type": "commonjs",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/types/index.d.ts",
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js",
"default": "./dist/cjs/index.js"
},
"./package.json": "./package.json"
},
"sideEffects": false,
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"clean": "rimraf dist",
"build": "npm run clean && npm run build:types && npm run build:cjs && npm run build:esm && npm run postbuild",
"build:cjs": "tsc --project tsconfig.cjs.json",
"build:esm": "tsc --project tsconfig.esm.json",
"build:types": "tsc --project tsconfig.types.json",
"postbuild": "node ./scripts/add-esm-package-json.js",
"test": "jest",
"test:coverage": "jest --coverage",
"lint": "eslint src/**/*.ts tests/**/*.ts",
"lint:fix": "eslint src/**/*.ts tests/**/*.ts --fix",
"prepublishOnly": "npm run build && npm test && npm run lint",
"prepare": "npm run build"
},
"peerDependencies": {
"zod": "^3.20.0 || ^4.0.0"
},
"devDependencies": {
"@eslint/js": "^9.31.0",
"@types/jest": "^30.0.0",
"@types/node": "^24.1.0",
"@typescript-eslint/eslint-plugin": "^8.38.0",
"@typescript-eslint/parser": "^8.38.0",
"eslint": "^9.31.0",
"eslint-plugin-jest": "^29.0.1",
"globals": "^16.3.0",
"jest": "^30.0.5",
"jest-environment-jsdom": "^30.0.5",
"rimraf": "^6.0.1",
"ts-jest": "^29.4.0",
"typescript": "^5.8.3",
"typescript-eslint": "^8.38.0",
"zod": "^4.0.10"
},
"engines": {
"node": ">=14.0.0"
}
}