-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.69 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
{
"name": "create-antd-modal",
"description": "Create a one-off modal dialog dynamically without maintenance loading and visible.",
"keywords": [
"antd",
"modal",
"javascript",
"function",
"dynamically",
"dialog",
"visible",
"loading"
],
"version": "1.7.0",
"scripts": {
"dev": "dumi dev",
"docs:build": "dumi build",
"build": "father build",
"prettier": "prettier --write \"**/*.{js,jsx,tsx,ts,less,md,json}\"",
"test": "umi-test",
"test:coverage": "umi-test --coverage",
"prepublishOnly": "npm run build",
"postpublish": "git push && git push --tags"
},
"files": [
"dist"
],
"module": "dist/esm/index.js",
"main": "dist/cjs/index.js",
"unpkg": "dist/umd/create-antd-modal.min.js",
"jsdelivr": "dist/umd/create-antd-modal.min.js",
"typings": "dist/esm/index.d.ts",
"gitHooks": {
"pre-commit": "lint-staged"
},
"license": "MIT",
"homepage": "https://github.com/bowencool/create-antd-modal",
"lint-staged": {
"*.{js,jsx,less,md,json}": [
"prettier --write"
],
"*.ts?(x)": [
"prettier --parser=typescript --write"
]
},
"devDependencies": {
"@swc/core": "^1.3.53",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@types/jest": "^27.5.2",
"@types/react": "^18.0.38",
"@types/react-dom": "^18.0.11",
"@umijs/fabric": "^2.14.1",
"@umijs/test": "^3.5.40",
"antd": "^5.12.2",
"dumi": "^1.1.50",
"father": "^4.1.9",
"lint-staged": "^10.0.7",
"prettier": "^2.8.8",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"yorkie": "^2.0.0"
},
"peerDependencies": {
"antd": "^5",
"react": "^18.0.0"
}
}