-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
119 lines (119 loc) · 2.52 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"name": "next-validations",
"version": "1.0.3",
"keywords": [
"nextjs",
"validation",
"next-validation",
"yup",
"joi",
"fastest-validator",
"valibot"
],
"repository": {
"type": "git",
"url": "https://github.com/jellydn/next-validations"
},
"license": "MIT",
"author": "Huynh Duc Dung",
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/esm/index.js",
"types": "./dist/index.d.ts"
}
},
"main": "dist/index.js",
"module": "dist/esm/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"scripts": {
"analyze": "size-limit --why",
"build": "tsup",
"coverage": "vitest --coverage",
"lint": "biome lint --apply-unsafe src",
"format": "biome format --write src",
"check": "biome check --apply src",
"release": "standard-version",
"size": "size-limit",
"start": "tsup --watch",
"test": "vitest run --update",
"test:ui": "vitest --ui",
"vercel-build": "npx typedoc src/index.ts"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint"
}
},
"dependencies": {
"@typeschema/main": "0.14.1"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@size-limit/preset-small-lib": "11.1.6",
"@skypack/package-check": "0.2.2",
"@testing-library/react": "16.1.0",
"@types/react": "18.3.14",
"@types/react-dom": "18.3.2",
"@typeschema/joi": "0.14.0",
"@typeschema/valibot": "0.14.0",
"@typeschema/yup": "0.14.0",
"@typeschema/zod": "0.14.0",
"@vitest/ui": "2.1.8",
"c8": "10.1.2",
"fastest-validator": "1.19.0",
"husky": "9.1.7",
"joi": "17.13.3",
"next": "15.0.4",
"react": "18.3.1",
"react-dom": "18.3.1",
"size-limit": "11.1.6",
"standard-version": "9.5.0",
"tslib": "2.8.1",
"tsup": "8.3.5",
"typedoc": "0.27.3",
"typescript": "5.7.2",
"valibot": "0.42.1",
"vite": "5.4.11",
"vitest": "2.1.8",
"yup": "1.5.0",
"zod": "3.23.8"
},
"peerDependencies": {
"next": "*"
},
"packageManager": "pnpm@9.15.0",
"engines": {
"node": ">=18"
},
"size-limit": [
{
"path": "dist/index.js",
"limit": "10 KB"
},
{
"path": "dist/esm/index.js",
"limit": "10 KB"
}
],
"tsup": {
"entry": [
"src/index.ts"
],
"splitting": false,
"sourcemap": true,
"minify": true,
"clean": true,
"dts": true,
"metafile": true,
"format": [
"esm",
"cjs"
],
"legacyOutput": true
}
}