-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.58 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.58 KB
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
{
"name": "react-scroll-kit",
"version": "1.0.0",
"description": "Automatic scroll restoration, navigation-aware scrolling, reusable hooks, utilities, and UI components for React Router apps.",
"repository": {
"type": "git",
"url": "https://github.com/Coderkube-App/react-scroll-kit.git"
},
"main": "./dist/index.cjs.js",
"module": "./dist/index.esm.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.esm.js",
"require": "./dist/index.cjs.js"
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"prepublishOnly": "npm run build"
},
"peerDependencies": {
"react": ">=18.0.0",
"react-router-dom": ">=6.0.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.4.5",
"@testing-library/react": "^15.0.7",
"@types/react": "^18.3.12",
"@types/react-router-dom": "^5.3.3",
"@vitest/coverage-v8": "^1.6.0",
"dotenv": "^8.2.0",
"jsdom": "^24.0.0",
"node-fetch": "^3.3.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^6.23.1",
"tsup": "^8.0.2",
"typescript": "^5.4.5",
"vitest": "^1.6.0"
},
"keywords": [
"react",
"react-router",
"scroll",
"scroll-restoration",
"scroll-to-top",
"hooks",
"typescript",
"navigation",
"progress-bar"
],
"author": "",
"license": "MIT",
"sideEffects": false
}