-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.47 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
{
"name": "@dinneb/react-use-modal",
"version": "1.0.3",
"description": "A custom hook that provides a flexible and reusable way to manage multiple modals in React applications.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"files": [
"dist"
],
"scripts": {
"build": "rollup -c",
"clean": "rm -rf dist",
"prepub": "npm-run-all test clean build",
"prepublishOnly": "npm test",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dennib/useModal.git"
},
"keywords": [
"react",
"typescript",
"modal",
"dialog",
"hook",
"custom hook"
],
"author": "Denni Bevilacqua",
"license": "ISC",
"bugs": {
"url": "https://github.com/dennib/useModal/issues"
},
"homepage": "https://github.com/dennib/useModal#readme",
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@babel/core": "^7.21.3",
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.21.0",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-terser": "^0.4.0",
"@testing-library/react": "14.0",
"@types/jest": "^29.5.0",
"@types/react": "^18.0.28",
"babel-core": "^6.26.3",
"babel-runtime": "^6.26.0",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"npm-run-all": "^4.1.5",
"rollup": "^3.19.1",
"rollup-plugin-typescript2": "^0.34.1",
"typescript": "^4.9.5"
}
}