-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.03 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
{
"name": "next-query-string-navigation",
"version": "1.0.1",
"description": "React hook to be used on NextJS components to trigger url based navigation",
"main": "dist/index.js",
"scripts": {
"start": "tsc && node dist/index.js",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/juarezs/next-query-string-navigation.git"
},
"keywords": [
"react",
"next",
"nextjs",
"hook",
"navigation",
"queryparams",
"query-params",
"querystring",
"query-string",
"search-params",
"search-Params",
"use-router"
],
"author": "Juarez Schulz",
"license": "MIT",
"bugs": {
"url": "https://github.com/juarezs/next-query-string-navigation/issues"
},
"homepage": "https://github.com/juarezs/next-query-string-navigation#readme",
"peerDependencies": {
"@types/react": "^16.8.0 || ^17.0.0 || ^18.0.0",
"next": "^13.0.0 || ^14.0.0",
"react": "^16.8.0 || ^17.0.0 || ^18.0.0"
},
"devDependencies": {
"typescript": "^5.5.4"
}
}