Skip to content

Commit

Permalink
build: update react-hook-form package.json (#246)
Browse files Browse the repository at this point in the history
  • Loading branch information
Yonom authored Jun 19, 2024
1 parent b306f4f commit fd9c38a
Showing 1 changed file with 25 additions and 8 deletions.
33 changes: 25 additions & 8 deletions packages/react-hook-form/package.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,31 @@
{
"name": "@assistant-ui/react-hook-form",
"version": "0.0.4",
"version": "0.0.5",
"license": "MIT",
"type": "module",
"exports": {
".": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
}
},
"source": "./src/index.ts",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": ["dist", "README.md"],
"sideEffects": false,
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts --sourcemap"
},
"dependencies": {
"zod": "^3.23.8"
},
"peerDependencies": {
"@assistant-ui/react": "^0.1.5",
"react-hook-form": "^7.x.x",
Expand All @@ -14,17 +37,11 @@
"optional": true
}
},
"dependencies": {
"zod": "^3.23.8"
},
"devDependencies": {
"@assistant-ui/react": "workspace:*",
"@assistant-ui/tsconfig": "workspace:*",
"tsup": "^8.1.0"
},
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts --sourcemap"
},
"publishConfig": {
"access": "public",
"provenance": true
Expand Down

0 comments on commit fd9c38a

Please sign in to comment.