-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.15 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"name": "@jlns/form",
"version": "0.0.8",
"license": "MIT",
"type": "module",
"types": "./dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/jln13x/form.git"
},
"exports": {
"./zod": {
"require": "./dist/zod/index.cjs",
"import": "./dist/zod/index.js",
"types": "./dist/zod/index.d.ts"
},
"./valibot": {
"require": "./dist/valibot/index.cjs",
"import": "./dist/valibot/index.js",
"types": "./dist/valibot/index.d.ts"
},
"./yup": {
"require": "./dist/yup/index.cjs",
"import": "./dist/yup/index.js",
"types": "./dist/yup/index.d.ts"
},
"./package.json": "./package.json"
},
"files": [
"dist"
],
"devDependencies": {
"bun-types": "latest",
"@changesets/cli": "^2.27.1",
"tsup": "^8.0.1"
},
"peerDependencies": {
"typescript": "^5.3.3",
"zod": "^3.22.4",
"react-hook-form": "^7.49.3",
"@hookform/resolvers": "^3.3.3",
"yup": "^1.3.3",
"valibot": "^0.26.0"
},
"scripts": {
"build": "tsup",
"cs": "changeset",
"pub": "bun run build && changeset version && changeset publish"
}
}