-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
124 lines (124 loc) · 3.53 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
{
"name": "@lobehub/readme-wizard",
"version": "0.10.1",
"description": "Generate lobe style product README by magic",
"homepage": "https://github.com/lobehub/lobe-readme-generator",
"bugs": {
"url": "https://github.com/lobehub/lobe-readme-wizard/issues/new/choose"
},
"repository": {
"type": "git",
"url": "https://github.com/lobehub/lobe-readme-wizard.git"
},
"license": "MIT",
"author": "LobeHub <[email protected]>",
"sideEffects": false,
"scripts": {
"build": "dumi build",
"ci": "npm run lint",
"dev": "dumi dev",
"i18n": "lobe-i18n",
"icon-sync": "node ./scripts/syncSimpleIconList.mjs",
"lint": "npm run lint:ts && npm run lint:style",
"lint:md": "remark . --quiet --frail --output",
"lint:style": "stylelint \"{src,tests}/**/*.{js,jsx,ts,tsx}\" --fix",
"lint:ts": "eslint \"{src,tests}/**/*.{js,jsx,ts,tsx}\" --fix",
"prepare": "husky && npm run setup",
"prettier": "prettier -c --write \"**/**\"",
"pull": "git pull",
"release": "semantic-release",
"setup": "dumi setup",
"start": "next start",
"stylelint": "stylelint \"src/**/*.{js,jsx,ts,tsx}\" --fix",
"test": "vitest --passWithNoTests",
"test:coverage": "vitest run --coverage --passWithNoTests",
"test:update": "vitest -u",
"type-check": "tsc --noEmit"
},
"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": {
"@babel/runtime": "^7.26.0",
"@vercel/og": "0.5.18",
"dotenv": "^16.4.5",
"fast-deep-equal": "^3.1.3",
"immer": "^10.1.1",
"lodash-es": "^4.17.21",
"node-html-parser": "^6.1.13",
"polished": "^4.3.1",
"query-string": "^8.2.0",
"react-markdown": "^8.0.7",
"react-syntax-highlighter": "^15.6.1",
"rehype-highlight": "^7.0.1",
"rehype-raw": "^7.0.0",
"remark-gfm": "^3.0.1",
"remark-slug": "^7.0.1",
"remark-toc": "^8.0.1",
"simple-icons": "^10.4.0",
"swr": "^2.2.5",
"url-join": "^5.0.0",
"use-merge-value": "^1.2.0",
"utility-types": "^3.11.0",
"zustand": "^4.5.5",
"zustand-utils": "^1.3.2"
},
"devDependencies": {
"@commitlint/cli": "^18.6.1",
"@lobehub/lint": "latest",
"@testing-library/react": "^14.3.1",
"@types/lodash-es": "^4.17.12",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@vitest/coverage-v8": "~1.2.2",
"babel-plugin-antd-style": "^1.0.4",
"commitlint": "^18.6.1",
"concurrently": "^8.2.2",
"cross-env": "^7.0.3",
"dumi": "^2.4.14",
"dumi-theme-lobehub": "^1.10.4",
"eslint": "^8.57.1",
"father": "^4.5.1",
"husky": "^9.1.7",
"jsdom": "^23.2.0",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"remark": "^14.0.3",
"remark-cli": "^11.0.0",
"semantic-release": "^21.1.2",
"stylelint": "^15.11.0",
"typescript": "^5.7.2",
"vitest": "~1.2.2"
},
"peerDependencies": {
"@lobehub/ui": ">=1",
"ahooks": ">=3",
"antd": ">=5.13.0",
"antd-style": ">=3",
"leva": ">=0.9.35",
"lucide-react": ">=0.396.0",
"react": ">=18",
"react-dom": ">=18",
"react-layout-kit": ">=1"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
}
}