-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
58 lines (58 loc) · 1.62 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
{
"name": "react-custom-alert",
"version": "1.0.4",
"description": "Easliy use react alert and customize",
"module": "dist/index.esm.js",
"main": "dist/index.js",
"types": "dist/types/index.d.ts",
"scripts": {
"build": "rollup -c rollup.config.js",
"lint": "eslint 'src/**/*.ts' 'src/**/*.tsx'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gusrb3164/react-custom-alert.git"
},
"keywords": [
"react",
"toast",
"custom",
"alert",
"notification"
],
"author": {
"name": "Hyeon Gyu Kim",
"email": "[email protected]",
"url": "https://github.com/gusrb3164"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/gusrb3164/react-custome-alert/issues"
},
"homepage": "https://github.com/gusrb3164/react-custom-alert#readme",
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0 || ^18.0.0",
"react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0"
},
"devDependencies": {
"@types/react": "^17.0.24",
"@typescript-eslint/eslint-plugin": "^5.15.0",
"@typescript-eslint/parser": "^5.15.0",
"eslint": "^8.11.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-jest": "^26.1.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.3.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-import-css": "^3.0.3",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-typescript2": "^0.31.2",
"typescript": "^4.6.2"
},
"files": [
"dist"
]
}