forked from rafgraph/react-router-hash-link
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
57 lines (57 loc) · 1.38 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
{
"name": "@xzar90/react-router-hash-link",
"version": "6.0.4",
"description": "Hash link scroll functionality for React Router v6",
"main": "dist/xzar90-react-router-hash-link.cjs.js",
"module": "dist/xzar90-react-router-hash-link.esm.js",
"types": "dist/index.d.ts",
"sideEffects": false,
"scripts": {
"build": "rollpkg build",
"watch": "rollpkg watch",
"prepublishOnly": "npm run build",
"lintStaged": "lint-staged"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"repository": {
"type": "git",
"url": "git+https://github.com/xzar90/react-router-hash-link.git"
},
"keywords": [
"react",
"react-router",
"link",
"hash-link",
"scroll"
],
"author": "Rafael Pedicini <[email protected]>, XzaR90",
"license": "MIT",
"bugs": {
"url": "https://github.com/rafgraph/react-router-hash-link/issues"
},
"peerDependencies": {
"react": ">=17",
"react-router-dom": ">=6"
},
"devDependencies": {
"@types/react": "^17.0.37",
"lint-staged": "^10.5.4",
"pre-commit": "^1.2.2",
"prettier": "^2.5.1",
"react": "^17.0.2",
"react-router-dom": "^6.1.1",
"rollpkg": "^0.5.7",
"typescript": "^4.5.4"
},
"pre-commit": "lintStaged",
"lint-staged": {
"(src/**/*|demo/src/**/*)": [
"prettier --write --ignore-unknown"
]
},
"prettier": "rollpkg/configs/prettier.json"
}