-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 996 Bytes
/
package.json
File metadata and controls
48 lines (48 loc) · 996 Bytes
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
{
"name": "react-stacks",
"version": "0.2.1",
"description": "Stacks layout for React.js alert, notification and toast components.",
"author": "Markus Wetzel <markuswetzel@gmx.net>",
"license": "MIT",
"keywords": [
"react",
"stacks",
"placement",
"alerts",
"notifications",
"toasts"
],
"repository": {
"type": "git",
"url": "https://github.com/ProAI/react-stacks.git"
},
"bugs": {
"url": "https://github.com/ProAI/react-stacks/issues"
},
"main": "dist/react-stacks.cjs.js",
"module": "dist/react-stacks.esm.js",
"scripts": {
"build": "packsy build",
"dev": "packsy dev",
"prepublishOnly": "packsy validate && packsy build"
},
"files": [
"dist"
],
"devDependencies": {
"packsy": "0.2.5",
"react": "19.2.3"
},
"peerDependencies": {
"react": ">=16.8"
},
"husky": {
"hooks": {
"pre-commit": "packsy pre-commit"
}
},
"engines": {
"node": ">= 16",
"npm": ">= 8"
}
}