-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.12 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
{
"name": "active-link-nextjs",
"version": "0.1.7",
"type": "module",
"exports": {
".": "./dist/use-active-router.js",
"./dist/*": "./dist/*"
},
"description": "React hook to use with nextjs router to auto apply active class on active link",
"types": "./dist/use-active-router.d.ts",
"files": [
"src",
"dist",
"types"
],
"scripts": {
"build": "rm -rf dist && tsc",
"prepublishOnly": "npm run build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rishabhrpg/active-link-nextjs.git"
},
"keywords": [
"active",
"link",
"nextjs"
],
"author": "Rishabh Gusain",
"license": "MIT",
"bugs": {
"url": "https://github.com/rishabhrpg/active-link-nextjs/issues"
},
"homepage": "https://github.com/rishabhrpg/active-link-nextjs#readme",
"devDependencies": {
"@types/node": "^18.16.3",
"@types/react": "^18.2.1",
"@types/react-dom": "^18.2.2",
"typescript": "^5.0.4"
},
"peerDependencies": {
"next": "^13.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0"
}
}