forked from approximant/next-progress
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.41 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
{
"name": "@audiu/next-progress",
"version": "0.1.6",
"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/audiu/next-progress.git"
},
"keywords": [
"Nprogress",
"Next",
"Next.js",
"Progressbar"
],
"author": "Eamon Ma",
"contributors": [
"Eamon Ma",
"Apal Shah",
"Mike Goodfellow"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/approximant/next-progress/issues"
},
"homepage": "https://github.com/approximant/next-progress#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.8.4",
"@types/react": "^18.0.21",
"@typescript-eslint/eslint-plugin": "^5.40.0",
"@typescript-eslint/parser": "^5.40.0",
"eslint": "^8.25.0",
"next": "^12.3.1",
"prettier": "^2.7.1",
"react": "^18.2.0",
"tsup": "^6.2.3",
"typescript": "^4.8.4"
}
}