@oriun/next-api
Version:
Next.js API routes with Zod validation
46 lines • 939 B
JSON
{
"name": "@oriun/next-api",
"version": "0.9.0",
"private": false,
"license": "MIT",
"description": "Next.js API routes with Zod validation",
"keywords": [
"next",
"nextjs",
"api",
"api-routes",
"zod",
"validation"
],
"author": "Oriun",
"main": "dist/index.js",
"files": [
"dist/*",
"package.json",
"README.md",
"LICENSE"
],
"peerDependencies": {
"next": ">=13.4",
"zod": ">=3.21"
},
"devDependencies": {
"@types/node": "20.1.0",
"@types/react": "18.2.5",
"@types/react-dom": "18.2.4",
"autoprefixer": "10.4.14",
"eslint": "8.40.0",
"eslint-config-next": "13.4.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"typescript": "5.0.4"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lib": "tsc -p tsconfig.lib.json",
"prepublish": "npm run lib"
}
}