-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 2.58 KB
/
package.json
File metadata and controls
98 lines (98 loc) · 2.58 KB
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "notify-bolt",
"version": "1.0.5",
"description": "A customizable React alert and modal system with theme support, multiple variants, and global configuration.",
"author": "Ak Moorthi",
"license": "MIT",
"private": false,
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"exports": {
".": {
"require": "./dist/index.cjs.js",
"import": "./dist/index.esm.js",
"types": "./dist/index.d.ts"
}
},
"scripts": {
"clean": "rm -rf dist",
"build": "rollup -c --bundleConfigAsCjs",
"prepare": "husky",
"dev": "rollup -c --watch --bundleConfigAsCjs",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --check .",
"format:fix": "prettier --write .",
"type-check": "tsc --noEmit"
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx}": [
"eslint . --fix",
"prettier --write"
],
"src/**/*.{css,scss,md}": [
"prettier --write"
]
},
"peerDependencies": {
"react": "^17.0.0 || ^18.0.0 || ^19.0.0",
"react-dom": "^17.0.0 || ^18.0.0 || ^19.0.0"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@rollup/plugin-commonjs": "^29.0.0",
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.3.0",
"@types/canvas-confetti": "^1.9.0",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"canvas-confetti": "^1.9.4",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-react-hooks": "^7.0.1",
"globals": "^16.5.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"postcss": "^8.5.6",
"prettier": "^3.7.4",
"rollup": "^4.54.0",
"rollup-plugin-dts": "^6.3.0",
"rollup-plugin-livereload": "^2.0.5",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-serve": "^3.0.0",
"rollup-watch": "^4.3.1",
"tslib": "^2.8.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.50.1"
},
"keywords": [
"react",
"react-alert",
"react-toast",
"codx-ak",
"react-notification",
"alert",
"react-smart-alerts",
"notification",
"custom-alerts",
"notify-bolt"
],
"repository": {
"type": "git",
"url": "git+https://github.com/codx-ak/notify-bolt.git"
},
"bugs": {
"url": "https://github.com/codx-ak/notify-bolt/issues"
},
"homepage": "https://codx-ak.github.io/notify-bolt",
"publishConfig": {
"access": "public"
}
}