-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.06 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
{
"name": "ez-modal-react",
"version": "1.0.5",
"description": "a easy modal state manager for React.",
"keywords": [
"react modal",
"modal store",
"modal manager",
"modal state manager"
],
"homepage": "https://raotaohub.github.io/ez-modal-react-book/",
"repository": {
"type": "git",
"url": "https://github.com/raotaohub/ez-modal-react"
},
"license": "MIT",
"author": {
"name": "raotaohub",
"email": "[email protected]",
"url": "https://github.com/raotaohub"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"import": "./dist/index.mjs"
}
},
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"/dist"
],
"scripts": {
"build": "tsup src/index.tsx",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"clean": "rimraf node_modules",
"dev": "vite",
"format": "prettier --write .",
"prepublishOnly": "npm run build",
"test": "vitest run --passWithNoTests",
"test:coverage": "vitest run --passWithNoTests --coverage"
},
"resolutions": {
"@types/react": "^16.8.0",
"@types/react-dom": "^16.8.0"
},
"devDependencies": {
"@testing-library/react": "^14.0.0",
"@types/react": "^16.8.0",
"@types/react-dom": "^16.8.0",
"@typescript-eslint/eslint-plugin": "^5.59.5",
"@typescript-eslint/parser": "^5.59.5",
"@vitejs/plugin-react": "^4.0.0",
"@vitest/coverage-c8": "^0.31.0",
"antd": "^5.5.0",
"eslint": "^8.40.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-react-hooks": "^4.6.0",
"happy-dom": "^9.18.3",
"prettier": "2.8.8",
"prettier-plugin-packagejson": "^2.4.3",
"react": "^16.8.0",
"react-dom": "^16.8.0",
"tsup": "6.7.0",
"typescript": "^4.3.5",
"vite": "^4.3.5",
"vitest": "^0.31.0"
},
"peerDependencies": {
"react": ">16.8.0",
"react-dom": ">16.8.0",
"typescript": ">4.0.0"
},
"publishConfig": {
"access": "public"
},
"title": "Ez Modal React"
}