84 lines
2.0 KiB
JSON
84 lines
2.0 KiB
JSON
{
|
|
"name": "zod-form-renderer",
|
|
"description": "Render form controls from zod schema",
|
|
"version": "0.0.0",
|
|
"author": "thepeaklab",
|
|
"homepage": "https://github.com/thepeaklab/zod-form-renderer",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/thepeaklab/zod-form-renderer.git"
|
|
},
|
|
"keywords": [
|
|
"zod",
|
|
"react",
|
|
"react-hook-form",
|
|
"form",
|
|
"form-renderer",
|
|
"validation"
|
|
],
|
|
"license": "MIT",
|
|
"type": "module",
|
|
"exports": {
|
|
".": {
|
|
"import": "./dist/index.js",
|
|
"require": "./dist/index.cjs.js"
|
|
}
|
|
},
|
|
"main": "./dist/index.cjs.js",
|
|
"module": "./dist/index.js",
|
|
"typings": "./dist/index.d.ts",
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"scripts": {
|
|
"start": "vite",
|
|
"build": "tsc && vite build",
|
|
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
|
|
"test": "vitest"
|
|
},
|
|
"peerDependencies": {
|
|
"@hookform/resolvers": "^3.9.0",
|
|
"react": "^18.2.0",
|
|
"react-dom": "^18.2.0",
|
|
"react-hook-form": "^7.50.1",
|
|
"zod": "^3.23.8"
|
|
},
|
|
"devDependencies": {
|
|
"@rollup/plugin-typescript": "^12.1.2",
|
|
"@semantic-release/changelog": "^6.0.3",
|
|
"@testing-library/react": "^16.2.0",
|
|
"@testing-library/user-event": "^14.6.0",
|
|
"@types/node": "^22.10.7",
|
|
"@types/react": "^18.3.18",
|
|
"@types/react-dom": "^18.3.5",
|
|
"@typescript-eslint/eslint-plugin": "^8.20.0",
|
|
"@typescript-eslint/parser": "^8.20.0",
|
|
"@vitejs/plugin-react": "^4.3.4",
|
|
"eslint": "^8.57.1",
|
|
"eslint-plugin-react-hooks": "^5.1.0",
|
|
"eslint-plugin-react-refresh": "^0.4.18",
|
|
"happy-dom": "^16.6.0",
|
|
"semantic-release": "^24.2.1",
|
|
"tslib": "^2.8.1",
|
|
"typescript": "^5.7.3",
|
|
"vite": "^6.0.7",
|
|
"vitest": "^3.0.2"
|
|
},
|
|
"release": {
|
|
"branches": [
|
|
"main"
|
|
],
|
|
"plugins": [
|
|
"@semantic-release/commit-analyzer",
|
|
"@semantic-release/release-notes-generator",
|
|
"@semantic-release/changelog",
|
|
[
|
|
"@semantic-release/npm",
|
|
{
|
|
"npmPublish": true
|
|
}
|
|
]
|
|
]
|
|
}
|
|
}
|