-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
51 lines (51 loc) · 1.3 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
{
"name": "zod-urlsearchparams",
"description": "serializes and deserializes a zod schema to URLSearchParams",
"version": "0.0.15",
"author": "Peter Schilling <npm@schpet.com>",
"bugs": {
"url": "https://github.com/schpet/zod-urlsearchparams/issues"
},
"devDependencies": {
"@biomejs/biome": "1.8.3",
"@schpet/config": "^0.0.6",
"tsup": "^8.2.4",
"typescript": "^5.5.4",
"vitest": "^2.0.5",
"zod": "^3.23.8"
},
"files": [
"dist"
],
"homepage": "https://github.com/schpet/zod-urlsearchparams#readme",
"keywords": [
"urlsearchparams",
"zod"
],
"license": "ISC",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"packageManager": "pnpm@9.5.0+sha512.140036830124618d624a2187b50d04289d5a087f326c9edfc0ccd733d76c4f52c3a313d4fc148794a2a9d81553016004e6742e8cf850670268a7387fc220c903",
"peerDependencies": {
"zod": "^3.0.0"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/schpet/zod-urlsearchparams.git"
},
"scripts": {
"build": "tsup",
"build-watch": "tsup --watch",
"check": "biome check --write --unsafe",
"ci": "biome ci",
"format": "biome format --write",
"lint": "biome lint --write",
"prepublishOnly": "pnpm run build",
"test": "vitest run",
"types": "tsc --noEmit"
},
"types": "./dist/index.d.ts"
}