-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
51 lines (51 loc) · 1.21 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
{
"name": "next-nprogress-bar",
"version": "2.4.3",
"description": "NextJS progress bar compatible with new app directory",
"repository": {
"type": "git",
"url": "https://github.com/Skyleen77/next-nprogress-bar.git"
},
"bugs": {
"url": "https://github.com/Skyleen77/next-nprogress-bar/issues"
},
"homepage": "https://next-nprogress-bar.vercel.app",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "rollup -c --bundleConfigAsCjs",
"start": "rollup -c -w --bundleConfigAsCjs"
},
"keywords": [
"next",
"nextjs",
"next js",
"react",
"nprogress",
"progress bar",
"progress bar app directory"
],
"author": "Skyleen",
"license": "MIT",
"devDependencies": {
"@types/node": "^20.1.2",
"@types/react": "^18.2.6",
"@types/react-dom": "^18.2.4",
"babel-core": "^6.26.3",
"babel-runtime": "^6.26.0",
"eslint": "^8.57.0",
"eslint-config-next": "^14.2.5",
"next": "^14.2.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rollup": "^3.21.6",
"rollup-plugin-typescript2": "^0.34.1",
"typescript": "^5.0.4"
},
"dependencies": {
"nprogress-v2": "^1.0.4"
}
}