zodsei
Version:
Contract-first type-safe HTTP client with Zod validation
82 lines • 1.86 kB
JSON
{
"name": "zodsei",
"version": "0.5.1",
"description": "Contract-first type-safe HTTP client with Zod validation",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"files": [
"dist",
"README.md"
],
"keywords": [
"typescript",
"http-client",
"zod",
"type-safe",
"contract-first",
"api-client"
],
"author": "Your Name",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/KeterVM/zodsei.git"
},
"homepage": "https://github.com/KeterVM/zodsei#readme",
"bugs": {
"url": "https://github.com/KeterVM/zodsei/issues"
},
"dependencies": {
"@zod/core": "^0.11.6"
},
"devDependencies": {
"@eslint/js": "^9.32.0",
"@types/node": "^22.10.5",
"@vitest/coverage-v8": "^3.2.4",
"eslint": "^9.32.0",
"prettier": "^3.6.2",
"tsup": "^8.5.0",
"typescript": "^5.8.3",
"typescript-eslint": "^8.38.0",
"vitest": "^3.2.4",
"zod": "^4.0.10"
},
"peerDependencies": {
"zod": "^4.0.0"
},
"peerDependenciesMeta": {
"axios": {
"optional": true
},
"ky": {
"optional": true
}
},
"optionalDependencies": {
"axios": "^1.11.0",
"ky": "^1.8.2"
},
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"test": "vitest run",
"test:watch": "vitest",
"test:dev": "vitest --watch",
"test:coverage": "vitest run --coverage",
"test:ui": "vitest --ui",
"type-check": "tsc --noEmit",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"format": "prettier --write src/**/*.ts",
"format:check": "prettier --check src/**/*.ts",
"clean": "rm -rf dist"
}
}