-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.06 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
{
"name": "zoaster",
"version": "0.3.0",
"description": "Toasty library",
"source": "src/index.tsx",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/arnautov-anton/zoaster"
},
"browserslist": [
">0.2%",
"not ie <= 11",
"not op_mini all"
],
"scripts": {
"bundle": "parcel build",
"build": "tsc",
"start": "tsc --watch",
"prepare": "rm -rf dist/ && npm bundle",
"types": "tsc"
},
"keywords": [
"zustand",
"zoaster",
"toast",
"toaster",
"react"
],
"author": {
"name": "Anton Arnautov",
"email": "[email protected]"
},
"license": "MIT",
"dependencies": {
"@emotion/css": "^11.7.1",
"immer": "^9.0.12",
"react": "^17.0.2",
"uuid": "^8.3.2",
"zustand": "^3.7.1"
},
"peerDependencies": {
"@swc/helpers": "^0.3.8"
},
"devDependencies": {
"@parcel/packager-ts": "2.4.0",
"@parcel/transformer-typescript-types": "2.4.0",
"@types/react": "^17.0.43",
"@types/uuid": "^8.3.4",
"parcel": "^2.4.0",
"typescript": "^4.6.3"
}
}