forked from apal21/nextjs-progressbar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.37 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": "nextjs-progressbar",
"version": "0.0.17",
"description": "Nprogress component for Next.js app.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsup",
"prepack": "npm run build",
"lint": "eslint --fix --cache src/",
"format": "prettier --write \"src/**/*.{ts,tsx}\"",
"typecheck": "tsc -p tsconfig.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/apal21/nextjs-progressbar.git"
},
"keywords": [
"Nprogress",
"Next",
"Next.js",
"Progressbar"
],
"author": "Apal Shah",
"license": "MIT",
"bugs": {
"url": "https://github.com/apal21/nextjs-progressbar/issues"
},
"homepage": "https://github.com/apal21/nextjs-progressbar#readme",
"files": [
"dist/**/*.js*",
"dist/**/*.mjs*",
"dist/**/*.d*"
],
"peerDependencies": {
"next": ">= 6.0.0",
"react": ">= 16.0.0"
},
"dependencies": {
"@types/nprogress": "^0.2.0",
"nprogress": "^0.2.0",
"prop-types": "^15.8.1"
},
"devDependencies": {
"@types/node": "^18.16.19",
"@types/react": "^18.2.15",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"eslint": "^8.44.0",
"next": "^13.4.9",
"prettier": "^3.0.0",
"react": "^18.2.0",
"tsup": "^7.1.0",
"typescript": "^5.1.6"
},
"packageManager": "yarn@3.6.1"
}