-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.12 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.12 KB
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
{
"name": "@lexz451/next-nprogress",
"version": "0.3.1",
"description": "NProgress integration with Next 13",
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/lexz451/next-nprogress.git"
},
"bugs": {
"url": "https://github.com/lexz451/next-nprogress/issues"
},
"homepage": "https://github.com/lexz451/next-nprogress#readme",
"main": "dist/index.js",
"module": "dist/index.mjs",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsup ./src/index.ts"
},
"keywords": [
"next",
"nextjs",
"next js",
"react",
"nprogress",
"progress bar",
"progress bar app directory"
],
"author": "lexz451",
"license": "MIT",
"devDependencies": {
"@rollup/plugin-typescript": "^11.1.5",
"@types/node": "^20.8.4",
"@types/nprogress": "^0.2.1",
"@types/react": "^18.2.28",
"@types/react-dom": "^18.2.13",
"next": "^13.5.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tslib": "^2.6.2",
"tsup": "^7.2.0",
"typescript": "^5.2.2"
},
"dependencies": {
"nprogress": "^0.2.0"
}
}