forked from beeinger/next-progress
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.49 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
{
"name": "next-progress",
"version": "2.3.0",
"description": "NextJS NProgress implementation",
"keywords": [
"next",
"nextjs",
"next js",
"react",
"nprogress",
"progress bar",
"styled",
"styled-components",
"reactjs",
"react js"
],
"repository": {
"type": "git",
"url": "https://github.com/beeinger/next-progress.git"
},
"bugs": {
"url": "https://github.com/beeinger/next-progress/issues"
},
"homepage": "https://github.com/beeinger/next-progress#readme",
"license": "MIT",
"author": "beeinger",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "rollup -c --bundleConfigAsCjs",
"start": "rollup -c -w --bundleConfigAsCjs",
"demo:dev": "cd ./demo/ && next",
"demo:build": "cd ./demo/ && next build",
"demo:start": "cd ./demo/ && next start",
"demo:lint": "cd ./demo/ && next lint"
},
"dependencies": {
"nprogress": "^0.2.0"
},
"devDependencies": {
"@types/node": "^18.16.0",
"@types/nprogress": "^0.2.0",
"@types/react": "^18.0.38",
"@types/react-dom": "^18.0.11",
"babel-core": "^6.26.3",
"babel-runtime": "^6.26.0",
"eslint": "^8.39.0",
"eslint-config-next": "13.3.1",
"next": "^13.3.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rollup": "^3.21.0",
"rollup-plugin-typescript2": "^0.34.1",
"typescript": "^5.0.4"
},
"peerDependencies": {
"next": ">=6.0.0",
"react": ">=16.0.0"
}
}