-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.58 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
{
"name": "@boonya/react-toaster",
"version": "1.0.0-canary.2",
"description": "Simple and lightweight react library to show stackable toasts.",
"keywords": [
"notification",
"alert",
"stack",
"notistack",
"toast",
"snackbar"
],
"author": "Serhii [boonya] Buinytskyi",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/boonya/react-toaster.git"
},
"engines": {
"npm": "~10.2.0",
"node": "~20.10.0"
},
"workspaces": [
"eslint",
"storybook"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"start": "npm start -w storybook",
"lint": "eslint .",
"format": "prettier -w .",
"code-style": "prettier -c .",
"verify": "npm run code-style && npm run lint",
"types": "tsc -p tsconfig.json --noEmit",
"build": "tsup",
"prepack": "jq 'del(.engines, .workspaces, .scripts, .devDependencies)' package.json > clean-package.json && mv clean-package.json package.json",
"postpack": "git checkout package.json",
"storybook:build": "npm run build -w storybook"
},
"dependencies": {
"goober": "^2.1.13",
"react-transition-group": "^4.4.5"
},
"peerDependencies": {
"react": "^16.8 || ^17 || ^18",
"react-dom": "^16.8 || ^17 || ^18"
},
"devDependencies": {
"@types/node": "^20.10.6",
"@types/react": "^18.2.47",
"@types/react-dom": "^18.2.18",
"@types/react-transition-group": "^4.4.10",
"prettier": "^3.1.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tsup": "^8.0.1",
"typescript": "^5.3.3"
}
}