-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1 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
{
"name": "react-image-with-auth",
"version": "1.0.13",
"description": "React component for displaying images with authorization token.",
"main": "dist/index.js",
"files": [
"dist"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"types": "dist/index.d.ts",
"scripts": {
"clean": "rimraf dist",
"prebuild": "npm run clean",
"preversion": "npm run build",
"version": "npm publish",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "https://github.com/EmekaNkwo/react_image_with_auth.git"
},
"keywords": [
"react",
"image",
"authorization",
"token"
],
"author": "Emeka Nkwo",
"license": "MIT",
"dependencies": {
"js-cookie": "^3.0.0",
"rimraf": "^4.3.1"
},
"devDependencies": {
"@types/js-cookie": "^3.0.1",
"@types/react": "^17.0.38",
"@types/react-dom": "^17.0.11",
"typescript": "^5.5.4"
},
"peerDependencies": {
"react": "^18.2.0"
}
}