-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.46 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
{
"name": "zod-compare",
"version": "1.0.0",
"description": "Compare two Zod schemas recursively.",
"keywords": [
"zod",
"compare",
"comparator",
"schema",
"type",
"typescript",
"validation"
],
"repository": {
"type": "git",
"url": "https://github.com/lawvs/zod-compare.git"
},
"license": "MIT",
"author": "whitewater <me@waterwater.moe>",
"sideEffects": false,
"type": "module",
"main": "src/index.ts",
"files": [
"src",
"dist"
],
"scripts": {
"build": "tsc && vite build",
"format": "prettier --check .",
"format:fix": "prettier --write .",
"typeCheck": "tsc --noEmit",
"test": "vitest",
"changeset": "changeset",
"release": "pnpm run build && changeset publish"
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.1",
"@vitest/coverage-v8": "^2.0.1",
"prettier": "^3.2.5",
"typescript": "^5.4.5",
"vite": "^5.2.11",
"vite-plugin-dts": "^4.0.2",
"vitest": "^2.0.1",
"zod": "^3.23.6"
},
"peerDependencies": {
"zod": "^3.22.4"
},
"packageManager": "pnpm@9.0.6",
"engines": {
"node": ">=20"
},
"prettier": {},
"publishConfig": {
"access": "public",
"main": "dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
}
}