-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.24 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
{
"name": "react-message-bar",
"version": "1.0.9",
"description": "A simple React component for showing and dismissing a messagebar",
"main": "./lib/cjs/index.js",
"module": "./lib/esm/index.js",
"types": "./lib/esm/index.d.ts",
"files": [
"/lib"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "npm run build:esm && npm run build:cjs && npm run copy-styles",
"build:esm": "tsc",
"build:cjs": "tsc --module commonjs --outDir lib/cjs",
"copy-styles": "mkdir -p lib/styles && cp styles/* lib/styles/"
},
"keywords": [
"React",
"React-component",
"component",
"notification",
"announcement"
],
"author": "Simon Blok",
"license": "MIT",
"dependencies": {
"typescript": "^4.7.4"
},
"devDependencies": {
"@types/react": "^18.0.14",
"@types/react-dom": "^18.0.6",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"bugs": {
"url": "https://github.com/SimonBlok/react-message-bar/issues"
},
"homepage": "https://github.com/SimonBlok/react-message-bar",
"repository": {
"type": "git",
"url": "https://github.com/SimonBlok/react-message-bar"
}
}