-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.34 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "confirmly-popup.js",
"version": "1.5.1",
"type": "module",
"description": "A lightweight javascript confirmation popup with support for Bootstrap, Tailwind, and Material Design.",
"repository": {
"type": "git",
"url": "https://github.com/farisnceit/confirmly-js.git"
},
"homepage": "https://farisnceit.github.io/confirmly-js/",
"license": "MIT",
"keywords": [
"confirmation",
"popup",
"dialog",
"modal",
"javascript",
"typescript",
"bootstrap",
"tailwind",
"material-design",
"ui",
"confirm-dialog",
"confirmation-modal"
],
"main": "./dist/confirmly-popup.umd.js",
"module": "./dist/confirmly-popup.esm.js",
"unpkg": "./dist/confirmly-popup.umd.min.js",
"types": "./dist/types/confirmlyPopup.d.ts",
"exports": {
".": {
"import": "./dist/confirmly-popup.esm.js",
"require": "./dist/confirmly-popup.umd.js",
"umd": "./dist/confirmly-popup.umd.min.js",
"types": "./dist/types/confirmlyPopup.d.ts"
},
"./styles.css": "./dist/styles.css"
},
"scripts": {
"build": "rollup -c",
"watch": "rollup -c -w",
"lint": "eslint --fix .",
"format": "prettier --write .",
"lint:check": "eslint .",
"format:check": "prettier --check .",
"prepare": "husky",
"prepublish": "npm run format && npm run lint:check && npm run format:check && npm run build"
},
"devDependencies": {
"@eslint/js": "^9.22.0",
"@popperjs/core": "^2.11.8",
"@rollup/plugin-commonjs": "^28.0.2",
"@rollup/plugin-node-resolve": "^16.0.0",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.1.2",
"@typescript-eslint/eslint-plugin": "^8.26.0",
"@typescript-eslint/parser": "^8.26.0",
"eslint": "^9.22.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.2.3",
"eslint-plugin-promise": "^7.2.1",
"globals": "^16.0.0",
"husky": "^9.1.7",
"lint-staged": "^15.3.0",
"prettier": "^3.4.2",
"rollup": "^4.30.1",
"rollup-plugin-sass": "^1.15.2",
"sass": "^1.85.1",
"typescript": "^5.7.3",
"typescript-eslint": "^8.26.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.ts": [
"eslint --fix",
"prettier --write"
]
}
}