-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 1.89 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
64
65
66
67
68
69
70
71
72
73
74
{
"name": "react-router-topbar",
"version": "0.0.2",
"description": "React Router top loading bar component made using NProgress, compatible with React transition and router loaders.",
"keywords": [
"React",
"React TopLoader",
"React.js",
"React Router",
"Nprogress",
"Top Loading Bar",
"Progressbar"
],
"bugs": {
"url": "https://github.com/ha1fstack/react-router-topbar/issues"
},
"repository": "https://github.com/ha1fstack/react-router-topbar",
"license": "MIT",
"author": "ha1fstack",
"main": "src/index.tsx",
"files": [
"dist",
"src"
],
"scripts": {
"build": "tsup",
"format": "prettier --write \"src/**/*.{ts,tsx}\"",
"lint": "eslint --fix --cache src/",
"prepack": "clean-package",
"postpack": "clean-package restore",
"release": "dotenv release-it --",
"typecheck": "tsc -p tsconfig.json"
},
"dependencies": {
"nprogress": "^0.2.0"
},
"devDependencies": {
"@release-it/keep-a-changelog": "^5.0.0",
"@types/nprogress": "^0.2.3",
"@types/react": "^18.3.3",
"@vercel/style-guide": "^6.0.0",
"clean-package": "^2.2.0",
"dotenv-cli": "^7.4.2",
"eslint": "^8.57.0",
"prettier": "^3.3.3",
"prettier-plugin-packagejson": "^2.5.2",
"react": "^18.3.1",
"react-router-dom": "^6.26.2",
"release-it": "^17.6.0",
"release-it-pnpm": "^4.6.3",
"tsup": "^8.3.0",
"typescript": "catalog:typescript"
},
"peerDependencies": {
"react": "^18",
"react-router-dom": "^6"
},
"packageManager": "[email protected]",
"clean-package": {
"replace": {
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"./package.json": "./package.json"
}
}
}
}