-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 loc) · 1.12 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
{
"name": "remix-progressbar",
"version": "0.1.0",
"description": "Progress Bar for Remix Applications",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"package.json",
"README.md",
"LICENSE",
"/dist"
],
"scripts": {
"format": "prettier index.tsx --write",
"cleanup": "rimraf dist",
"build": "tsc -p tsconfig.json"
},
"devDependencies": {
"@remix-run/react": "^1.9.0",
"@types/nprogress": "^0.2.0",
"@types/react": "^18.0.26",
"prettier": "^2.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rimraf": "^3.0.2",
"typescript": "^4.9.4"
},
"dependencies": {
"nprogress": "^0.2.0"
},
"peerDependencies": {
"@remix-run/react": "^1.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/dev-afzalansari/remix-progressbar.git"
},
"bugs": {
"url": "https://github.com/dev-afzalansari/remix-progressbar/issues"
},
"homepage": "https://github.com/dev-afzalansari/remix-progressbar#readme",
"keywords": [
"remix",
"remix-progressbar",
"progressbar",
"nprogress"
],
"license": "MIT"
}