-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1019 Bytes
/
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
{
"name": "mui-simple-toast",
"version": "0.3.5",
"description": "A simpler MUI Toast",
"repository": "https://github.com/manjushsh/mui-simple-toast",
"author": "manjushsh",
"license": "MIT",
"private": false,
"scripts": {
"clean": "rm -rf dist",
"build": "tsc && cp package.json README.md ./dist",
"build:cjs": "tsc --module commonjs --outDir dist/cjs",
"prepublish": "npm run clean && npm run build"
},
"devDependencies": {
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@mui/icons-material": "^5.10.9",
"@mui/material": "^5.10.12",
"@types/jest": "^29.2.1",
"@types/react": "^18.0.24",
"@types/react-dom": "^18.0.8",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tslib": "^2.4.1",
"typescript": "^4.8.4"
},
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"keywords": [
"toaster",
"mui",
"material-toast",
"mui-toast",
"snackbar",
"react-toast"
]
}