-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.04 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
{
"name": "unity-ui",
"author": "liutao",
"version": "0.1.0",
"homepage": "https://liutaohz.github.io/unity-ui/",
"bugs": "https://github.com/liutaohz/unity-ui/issues",
"repository": {
"type": "git",
"url": "https://github.com/liutaohz/unity-ui"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"scripts": {
"start": "dumi dev",
"docs:build": "dumi build",
"docs:deploy": "gh-pages -d docs-dist",
"build": "father-build",
"deploy": "npm run docs:build && npm run docs:deploy",
"release": "npm run build && npm publish",
"prettier": "prettier --write \"**/*.{js,jsx,tsx,ts,less,md,json}\"",
"cz": "git cz",
"standard": "standard-version",
"version:major": "standard-version -r major -n",
"version:minor": "standard-version -r minor -n",
"version:patch": "standard-version -r patch -n",
"version:alpha": "standard-version -p alpha -n",
"version:beta": "standard-version -p beta -n",
"version:rc": "standard-version -p rc -n",
"test": "umi-test",
"test:coverage": "umi-test --coverage"
},
"main": "dist/index.js",
"module": "dist/index.esm.js",
"typings": "dist/index.d.ts",
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{js,jsx,less,md,json}": [
"prettier --write"
],
"*.ts?(x)": [
"prettier --parser=typescript --write"
]
},
"dependencies": {
"classnames": "^2.3.1"
},
"peerDependencies": {
"react": ">=16.12.0",
"cron-parser": ">=4.9.0",
"antd": ">=5.0.0",
"@ant-design/icons": ">=4.8.0"
},
"devDependencies": {
"@umijs/test": "^4.2.10",
"commitizen": "^4.2.4",
"dumi": "^1.0.16",
"father-build": "^1.17.2",
"gh-pages": "^6.1.1",
"git-cz": "^4.7.6",
"lint-staged": "^10.0.7",
"lodash": "^4.17.21",
"nanoid": "^4.0.0",
"prettier": "^2.2.1",
"standard-version": "^9.3.1",
"uuid": "^8.3.2",
"yorkie": "^2.0.0"
},
"engines": {
"node": ">=16.14.0"
},
"config": {
"commitizen": {
"path": "git-cz"
}
}
}