-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.85 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
61
62
63
64
65
66
67
68
{
"name": "antd-notifications-messages",
"description": "Notification for Reactjs based in ant-design",
"version": "2.0.3",
"files": [
"/lib"
],
"main": "./lib/cjs/index.js",
"module": "./lib/esm/index.js",
"types": "./lib/esm/index.d.ts",
"keywords": [
"react",
"reactjs",
"antd",
"ant-design",
"notification",
"component",
"components",
"design",
"framework",
"frontend",
"react-component",
"ui"
],
"repository": {
"type": "git",
"url": "git+https://github.com/rivaslive/antd-notifications-messages"
},
"bugs": {
"url": "https://github.com/rivaslive/antd-notifications-messages/issues"
},
"homepage": "https://antd-notifications-messages.vercel.app",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"author": "Kevin Rivas <[email protected]> (https://www.redshank.app)",
"license": "MIT",
"private": false,
"scripts": {
"dev": "nodemon --exec yarn build",
"build": "yarn build:esm && yarn build:cjs && yarn sass-compiler && yarn build:example",
"build:dev": "yarn build:esm && yarn build:cjs && yarn sass-compiler",
"build:example": "cd example && npm run build",
"start:example": "cd example && npm run start",
"build:esm": "tsc",
"format": "prettier --write .",
"build:cjs": "tsc --module commonjs --outDir lib/cjs",
"sass-compiler": "sass src/styles:lib/styles",
"publish:npm": "yarn build:dev && npm publish"
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@types/react": "^18.2.7",
"@types/react-dom": "^18.2.4",
"copyfiles": "2.4.1",
"nodemon": "2.0.16",
"prettier": "2.4.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rimraf": "3.0.2",
"sass": "1.52.2",
"typescript": "4.7.3"
},
"dependencies": {}
}