forked from lobehub/lobe-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
162 lines (162 loc) · 4.35 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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
{
"name": "@lobehub/ui",
"version": "1.118.2",
"description": "Lobe UI is an open-source UI component library for building AIGC web apps",
"keywords": [
"lobehub",
"components",
"chatbot components",
"react components",
"react ui"
],
"homepage": "https://github.com/lobehub/lobe-ui",
"bugs": {
"url": "https://github.com/lobehub/lobe-ui/issues/new"
},
"repository": {
"type": "git",
"url": "https://github.com/lobehub/lobe-ui.git"
},
"license": "MIT",
"author": "LobeHub <i@lobehub.com>",
"sideEffects": false,
"main": "es/index.js",
"module": "es/index.js",
"types": "es/index.d.ts",
"files": [
"es"
],
"scripts": {
"build": "father build",
"ci": "npm run lint && npm run type-check",
"clean": "rm -r es lib dist coverage .dumi/tmp .eslintcache node_modules/.cache",
"dev": "father dev",
"docs:build": "dumi build",
"docs:build-analyze": "ANALYZE=1 dumi build",
"docs:dev": "dumi dev",
"doctor": "father doctor",
"lint": "eslint \"{src,tests}/**/*.{js,jsx,ts,tsx}\" --fix",
"lint:md": "remark . --quiet --frail --output",
"lint:style": "stylelint \"{src,tests}/**/*.{js,jsx,ts,tsx}\" --fix",
"prepare": "husky install && npm run setup",
"prepublishOnly": "father doctor && npm run build",
"prettier": "prettier -c --write --no-error-on-unmatched-pattern \"**/**\"",
"pull": "git pull",
"release": "semantic-release",
"setup": "dumi setup",
"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/colors": "^7",
"@ant-design/icons": "^5",
"@babel/runtime": "^7",
"@emoji-mart/data": "^1",
"@emoji-mart/react": "^1",
"@floating-ui/react": "^0",
"@giscus/react": "^2",
"@lobehub/emojilib": "latest",
"@react-spring/web": "^9",
"@splinetool/react-spline": "^2.2.6",
"@splinetool/runtime": "^0.9.504",
"ahooks": "^3",
"chroma-js": "^2",
"copy-to-clipboard": "^3",
"dayjs": "^1",
"emoji-mart": "^5",
"emoji-regex": "^10",
"fast-deep-equal": "^3",
"immer": "^10",
"leva": "^0",
"lodash-es": "^4",
"lucide-react": "latest",
"polished": "^4",
"prism-react-renderer": "^2",
"query-string": "^8",
"rc-footer": "^0",
"re-resizable": "^6",
"react-error-boundary": "^4",
"react-layout-kit": "^1",
"react-markdown": "^8",
"react-rnd": "^10",
"react-simple-code-editor": "^0",
"rehype-katex": "^6",
"remark-gfm": "^3",
"remark-math": "^5",
"shikiji": "^0",
"swr": "^2",
"ts-md5": "^1",
"url-join": "^5",
"use-merge-value": "^1",
"uuid": "^9",
"zustand": "^4.4.1",
"zustand-utils": "^1.3.1"
},
"devDependencies": {
"@commitlint/cli": "^18",
"@lobehub/lint": "latest",
"@testing-library/react": "^14",
"@types/chroma-js": "^2",
"@types/lodash-es": "^4",
"@types/pangu": "^4",
"@types/query-string": "^6",
"@types/react": "^18",
"@types/react-dom": "^18",
"@types/uuid": "^9",
"@vitest/coverage-v8": "latest",
"antd-style": "^3",
"babel-plugin-antd-style": "latest",
"commitlint": "^18",
"concurrently": "^8",
"cross-env": "^7",
"dumi": "^2",
"dumi-theme-lobehub": "latest",
"eslint": "^8",
"father": "4.3.1",
"husky": "^8",
"jsdom": "^22",
"lint-staged": "^15",
"prettier": "^3",
"react": "^18",
"react-dom": "^18",
"remark": "^14",
"remark-cli": "^11",
"semantic-release": "^21",
"styled-components": "^6",
"stylelint": "^15",
"typescript": "^5",
"vitest": "latest"
},
"peerDependencies": {
"antd": ">=5",
"antd-style": ">=3",
"react": ">=18",
"react-dom": ">=18"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
}
}