-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
85 lines (85 loc) · 2 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
{
"type": "module",
"name": "react-modal-global",
"version": "2.3.6",
"description": "Uncontrollable Global React Modal",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"styles"
],
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"peerDependenciesMeta": {
"react-dom": {
"optional": true
}
},
"dependencies": {
"type-fest": "^4.0.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.1.4",
"@testing-library/react": "^14.0.0",
"@types/jest": "^29.4.0",
"@types/node": "^20.12.12",
"@types/uglify-js": "^3.17.5",
"@types/uuid": "^9.0.1",
"@typescript-eslint/eslint-plugin": "^6.9.1",
"@typescript-eslint/parser": "^6.9.1",
"eslint": "^9.2.0",
"eslint-plugin-react": "7.33.2",
"eslint-plugin-react-hooks": "4.6.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-unused-imports": "^3.0.0",
"sass": "^1.53.0",
"typescript": "^5.4.5",
"uglify-js": "^3.17.4",
"vite": "5.2.11",
"vite-plugin-dts": "^3.7.3"
},
"scripts": {
"build": "vite build && tsc",
"minify": "uglifyjs --compress --mangle --output dist/index.js -- dist/index.js",
"test": "bun test",
"test:coverage": "npm test -- --coverage *",
"prepublish": "rimraf build && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/FrameMuse/react-modal-global.git"
},
"keywords": [
"react",
"modal",
"global",
"dynamic",
"component",
"popup",
"drawer",
"dialog",
"ts",
"typescript"
],
"author": "FrameMuse",
"license": "MIT",
"bugs": {
"url": "https://github.com/FrameMuse/react-modal-global/issues"
},
"homepage": "https://github.com/FrameMuse/react-modal-global#readme",
"jest": {
"testMatch": [
"**/?(*.)+(spec|test).ts?(x)"
],
"coveragePathIgnorePatterns": [
"/layouts"
]
},
"engines": {
"node": ">=18",
"vscode": "^1.22.0"
}
}