-
-
Notifications
You must be signed in to change notification settings - Fork 50
/
package.json
72 lines (72 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
62
63
64
65
66
67
68
69
70
71
72
{
"name": "nextjs-toploader",
"version": "3.7.15",
"description": "A Next.js Top Loading Bar component made using nprogress, works with Next.js 14 and React.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build-lib": "tsup",
"lint": "eslint --fix --cache src/",
"format": "prettier --write \"src/**/*.{ts,tsx}\"",
"typecheck": "tsc -p tsconfig.json"
},
"exports": {
".": "./dist/index.js",
"./app": "./dist/app.js",
"./pages": "./dist/pages.js"
},
"funding": {
"url": "https://buymeacoffee.com/thesgj"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TheSGJ/nextjs-toploader.git"
},
"keywords": [
"Next",
"Next TopLoader",
"Next.js",
"Next.js 14",
"Next.js 13",
"Nprogress",
"React",
"Top Loading Bar",
"Progressbar"
],
"author": "Shri Ganesh Jha",
"license": "MIT",
"bugs": {
"url": "https://github.com/TheSGJ/nextjs-toploader/issues"
},
"homepage": "https://github.com/TheSGJ/nextjs-toploader#readme",
"files": [
"dist/**/*.js*",
"dist/**/*.mjs*",
"dist/**/*.d*"
],
"devDependencies": {
"@types/node": "^18.14.6",
"@types/nprogress": "^0.2.2",
"@types/react": "^18",
"@types/react-dom": "^18",
"@typescript-eslint/eslint-plugin": "^5.54.0",
"@typescript-eslint/parser": "^5.54.0",
"eslint": "^8.35.0",
"next": "^13.2.3",
"prettier": "^2.8.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tsup": "^6.6.3",
"typescript": "^4.9.5"
},
"peerDependencies": {
"next": ">= 6.0.0",
"react": ">= 16.0.0",
"react-dom": ">= 16.0.0"
},
"packageManager": "[email protected]",
"dependencies": {
"nprogress": "^0.2.0",
"prop-types": "^15.8.1"
}
}