-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.75 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
{
"name": "zod-search-params",
"version": "0.1.5",
"private": false,
"description": "Zod utility for parsing search params",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/theboxer/zod-search-params"
},
"bugs": {
"url": "https://github.com/theboxer/zod-search-params/issues"
},
"funding": "https://github.com/sponsors/theboxer",
"homepage": "https://github.com/theboxer/zod-search-params",
"keywords": [
"zod",
"search params",
"query params",
"url search params",
"url query params",
"next.js",
"nextjs",
"react"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/**/*"
],
"engines": {
"node": ">=18"
},
"scripts": {
"build": "tsc --project tsconfig.build.json",
"format": "prettier --write 'src/**/*.ts'",
"format:check": "prettier 'src/**/*.ts'",
"lint": "eslint 'src/**/*.ts'",
"lint:fix": "eslint --fix 'src/**/*.ts'",
"test": "jest",
"test:watch": "jest --watchAll",
"prepare" : "yarn build",
"prepublishOnly" : "yarn test && yarn lint",
"preversion" : "yarn lint",
"version" : "yarn format && git add -A src",
"postversion" : "git push && git push --tags"
},
"devDependencies": {
"@types/jest": "^29.5.8",
"@typescript-eslint/eslint-plugin": "^6.4.1",
"@typescript-eslint/parser": "^6.4.1",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-unicorn": "^48.0.1",
"jest": "^29.7.0",
"prettier": "^3.0.2",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"zod": "^3.22.2",
"eslint": "^8.52.0",
"typescript": "^5.2.2"
},
"peerDependencies": {
"zod": "^3.20.0"
}
}