-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.74 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
{
"name": "@jokullsolberg/next-use-search-params",
"public": true,
"description": "React hook for type safe search param use in Next.js.",
"author": "Jökull Sólberg <[email protected]>",
"homepage": "https://github.com/jokull/next-use-search-params",
"version": "0.1.0",
"license": "MIT",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"keywords": [
"typescript",
"react",
"hooks",
"zod",
"nextjs"
],
"scripts": {
"dev": "next dev --port 4200",
"build": "tsc -p tsconfig.build.json --module esNext --outDir dist --target es6",
"clean": "rimraf -rf ./dist",
"format": "prettier --write \"**/*.{json,md,mdx,css,scss,yaml,yml}\"",
"lint": "eslint '**/*.{js,jsx,ts,tsx}'",
"types-check": "tsc --noEmit",
"test": "playwright test"
},
"peerDependencies": {
"next": "^12.0.0 || ^13.0.0",
"react": "^16.8.0 || ^17.0.0 || ^18.0.0",
"react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0"
},
"dependencies": {
"zod": "^3.20.2"
},
"devDependencies": {
"@playwright/test": "^1.28.0",
"@types/node": "^18.11.9",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.9",
"@typescript-eslint/eslint-plugin": "^5.44.0",
"eslint": "^8.28.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard-with-typescript": "^23.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.5.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.31.11",
"next": "^13.0.4",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"typescript": "^4.9.3"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/jokull/next-use-search-params"
}
}