-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.83 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
{
"name": "react-modal-pop",
"version": "1.1.1",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/esm/index.d.ts",
"author": "Masoud Rezakhanlou <masoud.rk95@gmail.com>",
"repository": {
"type": "git",
"url": "git+https://github.com/mesutrk95/react-modal-pop.git"
},
"homepage": "https://github.com/mesutrk95/react-modal-pop#readme",
"engines": {
"node": ">=10"
},
"description": "A fun and customizable modal package for React, letting you easily add emoji-based confirmation dialogs to your app!",
"keywords": [
"react",
"dialog",
"modal",
"react-modal-pop",
"popup",
"popover",
"overlay",
"useModal",
"confirm",
"react-confirm",
"confirm-dialog",
"react-confirm-dialog",
"confirm-modal",
"react-confirm-modal",
"alert",
"react-alert",
"alert-dialog",
"react-alert-dialog",
"alert-modal",
"react-alert-modal",
"prompt",
"react-prompt",
"prompt-dialog"
],
"license": "MIT",
"files": [
"/dist"
],
"scripts": {
"build": "yarn build:esm && yarn build:cjs && yarn css:prod",
"build:dev": "yarn build:esm && yarn css:dev && yarn css:prod",
"build:esm": "tsc",
"build:cjs": "tsc --module commonjs --outDir dist/cjs",
"css:dev": "sass --style expanded src/index.scss > dist/index.css",
"css:prod": "sass --style compressed src/index.scss > dist/index.min.css",
"dev": "nodemon --watch src --ext ts,tsx,scss --exec \"yarn build:dev\""
},
"devDependencies": {
"@types/react": "^18.3.11",
"@types/react-dom": "^18.3.1",
"nodemon": "^3.1.7",
"postcss": "^8.4.47",
"postcss-modules": "^6.0.0",
"sass": "^1.80.3",
"tslib": "^2.8.0",
"typescript": "^5.6.3"
},
"peerDependencies": {
"react": "^18.3.1",
"react-dom": "^18.3.1"
}
}