-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.34 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
{
"name": "mui-multiple-popup",
"version": "1.0.2",
"description": "React MUI component for multiple popups.",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/types/index.d.ts",
"scripts": {
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"build:all": "tsc -b ./tsconfig.cjs.json ./tsconfig.esm.json ./tsconfig.types.json",
"build:clean": "rimraf ./dist",
"build": "npm run build:clean && npm run build:all"
},
"repository": {
"type": "git",
"url": "git+https://github.com/VriskaSerket51/mui-multiple-popup.git"
},
"author": "IREVES",
"license": "GPL-3.0-only",
"bugs": {
"url": "https://github.com/VriskaSerket51/mui-multiple-popup/issues"
},
"homepage": "https://github.com/VriskaSerket51/mui-multiple-popup#readme",
"keywords": [
"mui",
"popup",
"ui"
],
"peerDependencies": {
"@mui/icons-material": "^5.0.0",
"@mui/material": "^5.0.0",
"react": "^17.0.0 || ^18.0.0",
"react-dom": "^17.0.0 || ^18.0.0",
"zustand": "^4.0.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^7.2.0",
"@typescript-eslint/parser": "^7.2.0",
"eslint": "^8.57.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.5",
"rimraf": "^5.0.5",
"typescript": "^5.4.2"
}
}