-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 2.93 KB
/
Copy pathpackage.json
File metadata and controls
101 lines (101 loc) · 2.93 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
99
100
101
{
"name": "react-clear-modal",
"version": "3.0.1",
"description": "Simple and lightweight, fully controlled isomorphic (with SSR support) modal component for React.js",
"files": [
"dist/"
],
"main": "dist/index.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.esm.js",
"require": "./dist/index.js"
},
"./package.json": "./package.json"
},
"sideEffects": false,
"scripts": {
"build": "rm -rf dist && pnpm lint && rollup -c",
"lint": "eslint .",
"prepare": "husky install",
"prepublish": "pnpm build",
"check-types": "tsc --noEmit",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage"
},
"keywords": [
"react",
"reactjs",
"modal",
"dialog",
"modal-dialog",
"react-modal",
"react-modal-dialog",
"react-component",
"react-modal-component",
"typescript"
],
"author": "Vadym Shymko <vadymshymko@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/vadymshymko/react-clear-modal.git"
},
"bugs": {
"url": "https://github.com/vadymshymko/react-clear-modal/issues"
},
"homepage": "https://github.com/vadymshymko/react-clear-modal#readme",
"devDependencies": {
"@eslint/compat": "^2.1.0",
"@eslint/js": "^10.0.1",
"@rollup/plugin-commonjs": "^29.0.3",
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-terser": "^1.0.0",
"@rollup/plugin-typescript": "^12.3.0",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/jest": "^30.0.0",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@typescript-eslint/eslint-plugin": "^8.63.0",
"@typescript-eslint/parser": "^8.63.0",
"eslint": "^10.6.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.1.1",
"globals": "^17.7.0",
"husky": "^9.1.7",
"jest": "^30.4.2",
"jest-environment-jsdom": "^30.4.1",
"lint-staged": "^17.0.8",
"prettier": "3.9.5",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"rollup": "^4.62.2",
"ts-jest": "^29.4.11",
"tslib": "^2.8.1",
"typescript": "^6.0.3"
},
"peerDependencies": {
"@types/react": "^16.8 || ^17 || ^18 || ^19",
"react": "^16.8 || ^17 || ^18 || ^19",
"react-dom": "^16.8 || ^17 || ^18 || ^19"
},
"peerDependenciesMeta": {
"@types/react": {
"optional": true
}
},
"lint-staged": {
"*.{js,jsx,tsx}": "eslint --cache --fix",
".": "prettier --write"
},
"packageManager": "pnpm@10.30.3+sha512.c961d1e0a2d8e354ecaa5166b822516668b7f44cb5bd95122d590dd81922f606f5473b6d23ec4a5be05e7fcd18e8488d47d978bbe981872f1145d06e9a740017"
}