forked from lobehub/dumi-theme-lobehub
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
126 lines (126 loc) · 3.64 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"name": "dumi-theme-yunti",
"version": "1.7.3",
"description": "dumi-theme-yunti is a documentation site theme package designed for dumi2. It provides a more beautiful and user-friendly development and reading experience based on dumi-theme-lobehub and dumi-theme-antd",
"keywords": [
"yuntijs",
"dumi",
"dumi-theme"
],
"homepage": "https://yuntijs.github.io/dumi-theme-yunti",
"bugs": {
"url": "https://github.com/yuntijs/dumi-theme-yunti/issues/new"
},
"repository": {
"type": "git",
"url": "https://github.com/yuntijs/dumi-theme-yunti.git"
},
"license": "MIT",
"author": "Luobo Zhang <[email protected]>",
"sideEffects": false,
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "father build",
"ci": "npm run lint && npm run type-check",
"dev": "father dev",
"docs:build": "cd example && npm run build",
"docs:dev": "cd example && npm run dev",
"doctor": "father doctor",
"lint": "eslint \"{src,example}/**/*.{js,jsx,ts,tsx}\" --fix",
"lint:md": "remark . --quiet --frail --output",
"lint:style": "stylelint \"{src,example}/**/*.{js,jsx,ts,tsx}\" --fix",
"prepack": "npm run build && clean-pkg-json",
"prepare": "husky install && father link-dev-theme",
"prepublishOnly": "npm run build",
"prettier": "prettier -c --write --no-error-on-unmatched-pattern \"**/**\"",
"release": "semantic-release",
"start": "npm run docs:dev",
"test": "vitest --passWithNoTests",
"test:coverage": "vitest run --coverage --passWithNoTests",
"test:update": "vitest -u",
"type-check": "tsc -p tsconfig-check.json"
},
"lint-staged": {
"*.md": [
"remark --quiet --output --",
"prettier --write --no-error-on-unmatched-pattern"
],
"*.json": [
"prettier --write --no-error-on-unmatched-pattern"
],
"*.{js,jsx}": [
"prettier --write",
"stylelint --fix",
"eslint --fix"
],
"*.{ts,tsx}": [
"prettier --parser=typescript --write",
"stylelint --fix",
"eslint --fix"
]
},
"dependencies": {
"@ant-design/cssinjs": "^1.21.0",
"@emotion/server": "^11.11.0",
"@floating-ui/react": "^0.26.17",
"ahooks": "^3.8.0",
"chalk": "^4.1.2",
"fast-deep-equal": "^3.1.3",
"history": "^5.3.0",
"lodash-es": "^4.17.21",
"polished": "^4.3.1",
"rc-footer": "^0.6.8",
"react-layout-kit": "^1.9.0",
"use-merge-value": "^1.2.0",
"zustand": "^4.5.2"
},
"devDependencies": {
"@types/lodash-es": "^4.17.12",
"@types/node": "^20.14.2",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@vitest/coverage-v8": "^1.6.0",
"@yuntijs/lint": "^1.7.1",
"antd": "^5.23.4",
"antd-style": "^3.7.1",
"clean-pkg-json": "^1.2.0",
"commitlint": "^18",
"dumi": "^2.4.17",
"dumi-assets-types": "^2.3.0",
"eslint": "^8.57.0",
"father": "4.3.1",
"father-plugin-dumi-theme": "1.0.0-rc.1",
"husky": "^9.0.11",
"jsdom": "^22.1.0",
"leva": "^0.9.35",
"lint-staged": "^13.3.0",
"prettier": "^3.3.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"remark": "^14.0.3",
"remark-cli": "^11.0.0",
"semantic-release": "^21.1.2",
"stylelint": "^15.11.0",
"typescript": "^5.4.5",
"vitest": "^1.6.0"
},
"peerDependencies": {
"@giscus/react": ">=3",
"@lobehub/ui": ">=1",
"antd": ">=5",
"dumi": "^2.4",
"lucide-react": ">=0.292",
"react": ">=18",
"react-dom": ">=18",
"react-layout-kit": ">=1"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
}
}