@hubstr/kit 0.1.4 → 0.1.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +329 -309
package/package.json
CHANGED
|
@@ -1,309 +1,329 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@hubstr/kit",
|
|
3
|
-
"version": "0.1.
|
|
4
|
-
"description": "Hubstr UI, icons, editor, charts, TTS, analytics, and CLI tooling.",
|
|
5
|
-
"license": "MIT",
|
|
6
|
-
"author": "Hubstr",
|
|
7
|
-
"repository": {
|
|
8
|
-
"type": "git",
|
|
9
|
-
"url": "git+ssh://git@github.com/hubstr-io/kit.git"
|
|
10
|
-
},
|
|
11
|
-
"type": "module",
|
|
12
|
-
"sideEffects": [
|
|
13
|
-
"**/*.css"
|
|
14
|
-
],
|
|
15
|
-
"publishConfig": {
|
|
16
|
-
"access": "public",
|
|
17
|
-
"registry": "https://registry.npmjs.org"
|
|
18
|
-
},
|
|
19
|
-
"files": [
|
|
20
|
-
"analytics/src",
|
|
21
|
-
"assets-logo/assets",
|
|
22
|
-
"charts/src",
|
|
23
|
-
"cli-ui/dist",
|
|
24
|
-
"commitlint-config/dist",
|
|
25
|
-
"editor/patches",
|
|
26
|
-
"editor/scripts/postinstall-lexical-patch.cjs",
|
|
27
|
-
"editor/src",
|
|
28
|
-
"emojilib",
|
|
29
|
-
"eslint-config/dist",
|
|
30
|
-
"fluent-emoji/es",
|
|
31
|
-
"i18n-cli/dist",
|
|
32
|
-
"icons/es",
|
|
33
|
-
"lint/dist",
|
|
34
|
-
"market-sdk/dist",
|
|
35
|
-
"market-types/dist",
|
|
36
|
-
"prettier-config/dist",
|
|
37
|
-
"remarklint-config/dist",
|
|
38
|
-
"semantic-release-config/dist",
|
|
39
|
-
"seo-cli/dist",
|
|
40
|
-
"stylelint-config/dist",
|
|
41
|
-
"tts/src",
|
|
42
|
-
"ui/src",
|
|
43
|
-
"webfont-geist/css",
|
|
44
|
-
"webfont-geist-mono/css"
|
|
45
|
-
],
|
|
46
|
-
"exports": {
|
|
47
|
-
"./ui": "./ui/src/index.ts",
|
|
48
|
-
"./ui/base-ui": "./ui/src/base-ui/index.ts",
|
|
49
|
-
"./ui/icons": "./ui/src/icons/index.ts",
|
|
50
|
-
"./ui/awesome": "./ui/src/awesome/index.ts",
|
|
51
|
-
"./ui/brand": "./ui/src/brand/index.ts",
|
|
52
|
-
"./ui/chat": "./ui/src/chat/index.ts",
|
|
53
|
-
"./ui/color": "./ui/src/color/index.ts",
|
|
54
|
-
"./ui/i18n": "./ui/src/i18n/index.ts",
|
|
55
|
-
"./ui/mdx": "./ui/src/mdx/index.ts",
|
|
56
|
-
"./ui/mobile": "./ui/src/mobile/index.ts",
|
|
57
|
-
"./ui/storybook": "./ui/src/storybook/index.ts",
|
|
58
|
-
"./icons": {
|
|
59
|
-
"types": "./icons/es/index.d.ts",
|
|
60
|
-
"import": "./icons/es/index.js",
|
|
61
|
-
"default": "./icons/es/index.js"
|
|
62
|
-
},
|
|
63
|
-
"./editor": "./editor/src/index.ts",
|
|
64
|
-
"./editor/react": "./editor/src/react/index.ts",
|
|
65
|
-
"./editor/renderer": "./editor/src/renderer/index.ts",
|
|
66
|
-
"./editor/headless": "./editor/src/headless/index.ts",
|
|
67
|
-
"./editor/codemirror": "./editor/src/codemirror/index.ts",
|
|
68
|
-
"./editor/litexml-commands": "./editor/src/plugins/litexml/command/symbols.ts",
|
|
69
|
-
"./tts": "./tts/src/index.ts",
|
|
70
|
-
"./tts/react": "./tts/src/react/index.ts",
|
|
71
|
-
"./tts/server": "./tts/src/server/index.ts",
|
|
72
|
-
"./charts": "./charts/src/index.ts",
|
|
73
|
-
"./analytics": "./analytics/src/index.ts",
|
|
74
|
-
"./analytics/react": "./analytics/src/react/index.ts",
|
|
75
|
-
"./analytics/server": "./analytics/src/server.ts",
|
|
76
|
-
"./fluent-emoji": {
|
|
77
|
-
"types": "./fluent-emoji/es/index.d.ts",
|
|
78
|
-
"import": "./fluent-emoji/es/index.js",
|
|
79
|
-
"default": "./fluent-emoji/es/index.js"
|
|
80
|
-
},
|
|
81
|
-
"./market-sdk": "./market-sdk/dist/index.mjs",
|
|
82
|
-
"./market-types": "./market-types/dist/index.mjs",
|
|
83
|
-
"./lint": "./lint/dist/index.js",
|
|
84
|
-
"./eslint-config": "./eslint-config/dist/index.js",
|
|
85
|
-
"./commitlint-config": "./commitlint-config/dist/index.js",
|
|
86
|
-
"./prettier-config": "./prettier-config/dist/index.js",
|
|
87
|
-
"./remarklint-config": "./remarklint-config/dist/index.js",
|
|
88
|
-
"./stylelint-config": "./stylelint-config/dist/index.js",
|
|
89
|
-
"./semantic-release-config": "./semantic-release-config/dist/index.js",
|
|
90
|
-
"./semantic-release-config/changelog": "./semantic-release-config/dist/changelog.js",
|
|
91
|
-
"./semantic-release-config/monorepo": "./semantic-release-config/dist/monorepo.js",
|
|
92
|
-
"./cli-ui": "./cli-ui/dist/index.js",
|
|
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
|
-
"
|
|
163
|
-
"
|
|
164
|
-
"
|
|
165
|
-
"
|
|
166
|
-
"
|
|
167
|
-
"
|
|
168
|
-
"
|
|
169
|
-
"
|
|
170
|
-
"
|
|
171
|
-
"
|
|
172
|
-
"
|
|
173
|
-
"
|
|
174
|
-
"
|
|
175
|
-
"
|
|
176
|
-
"
|
|
177
|
-
"
|
|
178
|
-
"
|
|
179
|
-
"
|
|
180
|
-
"
|
|
181
|
-
"
|
|
182
|
-
"
|
|
183
|
-
"
|
|
184
|
-
"
|
|
185
|
-
"
|
|
186
|
-
"
|
|
187
|
-
"
|
|
188
|
-
"
|
|
189
|
-
"
|
|
190
|
-
"
|
|
191
|
-
"
|
|
192
|
-
"
|
|
193
|
-
"
|
|
194
|
-
"
|
|
195
|
-
"
|
|
196
|
-
"
|
|
197
|
-
"
|
|
198
|
-
"
|
|
199
|
-
"
|
|
200
|
-
"
|
|
201
|
-
"
|
|
202
|
-
"
|
|
203
|
-
"
|
|
204
|
-
"
|
|
205
|
-
"
|
|
206
|
-
"
|
|
207
|
-
"
|
|
208
|
-
"
|
|
209
|
-
"
|
|
210
|
-
"
|
|
211
|
-
"
|
|
212
|
-
"
|
|
213
|
-
"
|
|
214
|
-
"
|
|
215
|
-
"
|
|
216
|
-
"
|
|
217
|
-
"
|
|
218
|
-
"
|
|
219
|
-
"
|
|
220
|
-
"
|
|
221
|
-
"
|
|
222
|
-
"
|
|
223
|
-
"
|
|
224
|
-
"
|
|
225
|
-
"
|
|
226
|
-
"
|
|
227
|
-
"
|
|
228
|
-
"
|
|
229
|
-
"
|
|
230
|
-
"
|
|
231
|
-
"
|
|
232
|
-
"
|
|
233
|
-
"
|
|
234
|
-
"
|
|
235
|
-
"
|
|
236
|
-
"
|
|
237
|
-
"
|
|
238
|
-
"
|
|
239
|
-
"
|
|
240
|
-
"
|
|
241
|
-
"
|
|
242
|
-
"
|
|
243
|
-
"
|
|
244
|
-
"
|
|
245
|
-
"
|
|
246
|
-
"
|
|
247
|
-
"
|
|
248
|
-
"
|
|
249
|
-
"
|
|
250
|
-
"
|
|
251
|
-
"
|
|
252
|
-
"
|
|
253
|
-
"
|
|
254
|
-
"
|
|
255
|
-
"
|
|
256
|
-
"
|
|
257
|
-
"
|
|
258
|
-
"
|
|
259
|
-
"
|
|
260
|
-
"
|
|
261
|
-
"remark
|
|
262
|
-
"remark-
|
|
263
|
-
"remark-
|
|
264
|
-
"remark-
|
|
265
|
-
"remark-
|
|
266
|
-
"remark-
|
|
267
|
-
"remark-lint
|
|
268
|
-
"remark-
|
|
269
|
-
"remark-
|
|
270
|
-
"remark-
|
|
271
|
-
"remark-
|
|
272
|
-
"remark-
|
|
273
|
-
"remark-
|
|
274
|
-
"remark-
|
|
275
|
-
"remark-
|
|
276
|
-
"remark-
|
|
277
|
-
"remark-
|
|
278
|
-
"remark-
|
|
279
|
-
"remark-
|
|
280
|
-
"remark-
|
|
281
|
-
"
|
|
282
|
-
"
|
|
283
|
-
"
|
|
284
|
-
"
|
|
285
|
-
"
|
|
286
|
-
"
|
|
287
|
-
"
|
|
288
|
-
"
|
|
289
|
-
"
|
|
290
|
-
"
|
|
291
|
-
"
|
|
292
|
-
"
|
|
293
|
-
"
|
|
294
|
-
"
|
|
295
|
-
"
|
|
296
|
-
"
|
|
297
|
-
"
|
|
298
|
-
"
|
|
299
|
-
"
|
|
300
|
-
"
|
|
301
|
-
"
|
|
302
|
-
"
|
|
303
|
-
"
|
|
304
|
-
"
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
"
|
|
308
|
-
|
|
309
|
-
|
|
1
|
+
{
|
|
2
|
+
"name": "@hubstr/kit",
|
|
3
|
+
"version": "0.1.5",
|
|
4
|
+
"description": "Hubstr UI, icons, editor, charts, TTS, analytics, and CLI tooling.",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"author": "Hubstr",
|
|
7
|
+
"repository": {
|
|
8
|
+
"type": "git",
|
|
9
|
+
"url": "git+ssh://git@github.com/hubstr-io/kit.git"
|
|
10
|
+
},
|
|
11
|
+
"type": "module",
|
|
12
|
+
"sideEffects": [
|
|
13
|
+
"**/*.css"
|
|
14
|
+
],
|
|
15
|
+
"publishConfig": {
|
|
16
|
+
"access": "public",
|
|
17
|
+
"registry": "https://registry.npmjs.org"
|
|
18
|
+
},
|
|
19
|
+
"files": [
|
|
20
|
+
"analytics/src",
|
|
21
|
+
"assets-logo/assets",
|
|
22
|
+
"charts/src",
|
|
23
|
+
"cli-ui/dist",
|
|
24
|
+
"commitlint-config/dist",
|
|
25
|
+
"editor/patches",
|
|
26
|
+
"editor/scripts/postinstall-lexical-patch.cjs",
|
|
27
|
+
"editor/src",
|
|
28
|
+
"emojilib",
|
|
29
|
+
"eslint-config/dist",
|
|
30
|
+
"fluent-emoji/es",
|
|
31
|
+
"i18n-cli/dist",
|
|
32
|
+
"icons/es",
|
|
33
|
+
"lint/dist",
|
|
34
|
+
"market-sdk/dist",
|
|
35
|
+
"market-types/dist",
|
|
36
|
+
"prettier-config/dist",
|
|
37
|
+
"remarklint-config/dist",
|
|
38
|
+
"semantic-release-config/dist",
|
|
39
|
+
"seo-cli/dist",
|
|
40
|
+
"stylelint-config/dist",
|
|
41
|
+
"tts/src",
|
|
42
|
+
"ui/src",
|
|
43
|
+
"webfont-geist/css",
|
|
44
|
+
"webfont-geist-mono/css"
|
|
45
|
+
],
|
|
46
|
+
"exports": {
|
|
47
|
+
"./ui": "./ui/src/index.ts",
|
|
48
|
+
"./ui/base-ui": "./ui/src/base-ui/index.ts",
|
|
49
|
+
"./ui/icons": "./ui/src/icons/index.ts",
|
|
50
|
+
"./ui/awesome": "./ui/src/awesome/index.ts",
|
|
51
|
+
"./ui/brand": "./ui/src/brand/index.ts",
|
|
52
|
+
"./ui/chat": "./ui/src/chat/index.ts",
|
|
53
|
+
"./ui/color": "./ui/src/color/index.ts",
|
|
54
|
+
"./ui/i18n": "./ui/src/i18n/index.ts",
|
|
55
|
+
"./ui/mdx": "./ui/src/mdx/index.ts",
|
|
56
|
+
"./ui/mobile": "./ui/src/mobile/index.ts",
|
|
57
|
+
"./ui/storybook": "./ui/src/storybook/index.ts",
|
|
58
|
+
"./icons": {
|
|
59
|
+
"types": "./icons/es/index.d.ts",
|
|
60
|
+
"import": "./icons/es/index.js",
|
|
61
|
+
"default": "./icons/es/index.js"
|
|
62
|
+
},
|
|
63
|
+
"./editor": "./editor/src/index.ts",
|
|
64
|
+
"./editor/react": "./editor/src/react/index.ts",
|
|
65
|
+
"./editor/renderer": "./editor/src/renderer/index.ts",
|
|
66
|
+
"./editor/headless": "./editor/src/headless/index.ts",
|
|
67
|
+
"./editor/codemirror": "./editor/src/codemirror/index.ts",
|
|
68
|
+
"./editor/litexml-commands": "./editor/src/plugins/litexml/command/symbols.ts",
|
|
69
|
+
"./tts": "./tts/src/index.ts",
|
|
70
|
+
"./tts/react": "./tts/src/react/index.ts",
|
|
71
|
+
"./tts/server": "./tts/src/server/index.ts",
|
|
72
|
+
"./charts": "./charts/src/index.ts",
|
|
73
|
+
"./analytics": "./analytics/src/index.ts",
|
|
74
|
+
"./analytics/react": "./analytics/src/react/index.ts",
|
|
75
|
+
"./analytics/server": "./analytics/src/server.ts",
|
|
76
|
+
"./fluent-emoji": {
|
|
77
|
+
"types": "./fluent-emoji/es/index.d.ts",
|
|
78
|
+
"import": "./fluent-emoji/es/index.js",
|
|
79
|
+
"default": "./fluent-emoji/es/index.js"
|
|
80
|
+
},
|
|
81
|
+
"./market-sdk": "./market-sdk/dist/index.mjs",
|
|
82
|
+
"./market-types": "./market-types/dist/index.mjs",
|
|
83
|
+
"./lint": "./lint/dist/index.js",
|
|
84
|
+
"./eslint-config": "./eslint-config/dist/index.js",
|
|
85
|
+
"./commitlint-config": "./commitlint-config/dist/index.js",
|
|
86
|
+
"./prettier-config": "./prettier-config/dist/index.js",
|
|
87
|
+
"./remarklint-config": "./remarklint-config/dist/index.js",
|
|
88
|
+
"./stylelint-config": "./stylelint-config/dist/index.js",
|
|
89
|
+
"./semantic-release-config": "./semantic-release-config/dist/index.js",
|
|
90
|
+
"./semantic-release-config/changelog": "./semantic-release-config/dist/changelog.js",
|
|
91
|
+
"./semantic-release-config/monorepo": "./semantic-release-config/dist/monorepo.js",
|
|
92
|
+
"./cli-ui": "./cli-ui/dist/index.js",
|
|
93
|
+
"./i18n-cli": {
|
|
94
|
+
"require": {
|
|
95
|
+
"types": "./i18n-cli/dist/index.d.cts",
|
|
96
|
+
"default": "./i18n-cli/dist/index.cjs"
|
|
97
|
+
},
|
|
98
|
+
"import": {
|
|
99
|
+
"types": "./i18n-cli/dist/index.d.mts",
|
|
100
|
+
"default": "./i18n-cli/dist/index.mjs"
|
|
101
|
+
}
|
|
102
|
+
},
|
|
103
|
+
"./seo-cli": {
|
|
104
|
+
"require": {
|
|
105
|
+
"types": "./seo-cli/dist/index.d.cts",
|
|
106
|
+
"default": "./seo-cli/dist/index.cjs"
|
|
107
|
+
},
|
|
108
|
+
"import": {
|
|
109
|
+
"types": "./seo-cli/dist/index.d.mts",
|
|
110
|
+
"default": "./seo-cli/dist/index.mjs"
|
|
111
|
+
}
|
|
112
|
+
},
|
|
113
|
+
"./emojilib": "./emojilib/index.json",
|
|
114
|
+
"./assets-logo": "./assets-logo/assets/logo.png",
|
|
115
|
+
"./assets-logo/*": "./assets-logo/assets/*",
|
|
116
|
+
"./webfont-geist/css": "./webfont-geist/css/index.css",
|
|
117
|
+
"./webfont-geist-mono/css": "./webfont-geist-mono/css/index.css"
|
|
118
|
+
},
|
|
119
|
+
"bin": {
|
|
120
|
+
"hubstr-i18n": "./i18n-cli/dist/cli.js",
|
|
121
|
+
"hubstr-seo": "./seo-cli/dist/cli.js"
|
|
122
|
+
},
|
|
123
|
+
"scripts": {
|
|
124
|
+
"postinstall": "node ./editor/scripts/postinstall-lexical-patch.cjs"
|
|
125
|
+
},
|
|
126
|
+
"peerDependencies": {
|
|
127
|
+
"antd": "^6.1.1",
|
|
128
|
+
"motion": "^12.0.0",
|
|
129
|
+
"react": "^19.0.0",
|
|
130
|
+
"react-dom": "^19.0.0"
|
|
131
|
+
},
|
|
132
|
+
"dependencies": {
|
|
133
|
+
"@ant-design/cssinjs": "^2.1.2",
|
|
134
|
+
"@base-ui/react": "1.5.0",
|
|
135
|
+
"@dnd-kit/core": "^6.3.1",
|
|
136
|
+
"@dnd-kit/modifiers": "^9.0.0",
|
|
137
|
+
"@dnd-kit/sortable": "^10.0.0",
|
|
138
|
+
"@dnd-kit/utilities": "^3.2.2",
|
|
139
|
+
"@emoji-mart/data": "^1.2.1",
|
|
140
|
+
"@emoji-mart/react": "^1.1.1",
|
|
141
|
+
"@emotion/is-prop-valid": "^1.4.0",
|
|
142
|
+
"@eslint-community/eslint-plugin-eslint-comments": "^4.6.0",
|
|
143
|
+
"@eslint-react/eslint-plugin": "^2.12.4",
|
|
144
|
+
"@eslint/js": "^10.0.1",
|
|
145
|
+
"@floating-ui/dom": "^1.7.4",
|
|
146
|
+
"@floating-ui/react": "^0.27.19",
|
|
147
|
+
"@giscus/react": "^3.1.0",
|
|
148
|
+
"@lexical/clipboard": "0.42.0",
|
|
149
|
+
"@lexical/code-core": "0.42.0",
|
|
150
|
+
"@lexical/dragon": "0.42.0",
|
|
151
|
+
"@lexical/headless": "0.42.0",
|
|
152
|
+
"@lexical/history": "0.42.0",
|
|
153
|
+
"@lexical/link": "0.42.0",
|
|
154
|
+
"@lexical/list": "0.42.0",
|
|
155
|
+
"@lexical/rich-text": "0.42.0",
|
|
156
|
+
"@lexical/selection": "0.42.0",
|
|
157
|
+
"@lexical/table": "0.42.0",
|
|
158
|
+
"@lexical/utils": "0.42.0",
|
|
159
|
+
"@mdx-js/mdx": "^3.1.1",
|
|
160
|
+
"@mdx-js/react": "^3.1.1",
|
|
161
|
+
"@next/eslint-plugin-next": "^16.1.6",
|
|
162
|
+
"@pierre/diffs": "1.2.8",
|
|
163
|
+
"@radix-ui/react-slot": "^1.2.5",
|
|
164
|
+
"@shikijs/core": "^4.2.0",
|
|
165
|
+
"@shikijs/engine-javascript": "^3.20.0",
|
|
166
|
+
"@shikijs/transformers": "^4.2.0",
|
|
167
|
+
"@splinetool/runtime": "0.9.526",
|
|
168
|
+
"@xmldom/xmldom": "^0.8.11",
|
|
169
|
+
"ahooks": "^3.9.7",
|
|
170
|
+
"antd-style": "^4.1.0",
|
|
171
|
+
"arr-rotate": "^1.0.0",
|
|
172
|
+
"chalk": "^5.3.0",
|
|
173
|
+
"chroma-js": "^3.2.0",
|
|
174
|
+
"class-variance-authority": "^0.7.1",
|
|
175
|
+
"cli-spinners": "^3.0.0",
|
|
176
|
+
"clsx": "^2.1.1",
|
|
177
|
+
"commander": "^13.0.0",
|
|
178
|
+
"commitlint-config-gitmoji": "^2.3.1",
|
|
179
|
+
"conf": "^13.1.0",
|
|
180
|
+
"consola": "^3.3.3",
|
|
181
|
+
"cosmiconfig": "^9.0.0",
|
|
182
|
+
"date-fns": "^4.1.0",
|
|
183
|
+
"dayjs": "^1.11.21",
|
|
184
|
+
"debug": "^4.4.3",
|
|
185
|
+
"deepmerge": "^4.3.1",
|
|
186
|
+
"dirty-json": "^0.9.2",
|
|
187
|
+
"dotenv": "^16.4.7",
|
|
188
|
+
"eld": "^2.0.3",
|
|
189
|
+
"emoji-mart": "^5.6.0",
|
|
190
|
+
"emoji-regex": "^10.6.0",
|
|
191
|
+
"es-toolkit": "^1.47.0",
|
|
192
|
+
"eslint-config-prettier": "^9.1.2",
|
|
193
|
+
"eslint-import-resolver-typescript": "^4.4.4",
|
|
194
|
+
"eslint-plugin-import-x": "^4.16.1",
|
|
195
|
+
"eslint-plugin-jsx-a11y": "^6.10.2",
|
|
196
|
+
"eslint-plugin-perfectionist": "^5.5.0",
|
|
197
|
+
"eslint-plugin-react": "^7.37.5",
|
|
198
|
+
"eslint-plugin-react-compiler": "^19.1.0-rc.2",
|
|
199
|
+
"eslint-plugin-react-hooks": "5.2.0",
|
|
200
|
+
"eslint-plugin-react-native": "^5.0.0",
|
|
201
|
+
"eslint-plugin-react-refresh": "^0.5.0",
|
|
202
|
+
"eslint-plugin-regexp": "^3.0.0",
|
|
203
|
+
"eslint-plugin-simple-import-sort": "^12.1.1",
|
|
204
|
+
"eslint-plugin-unicorn": "^63.0.0",
|
|
205
|
+
"eslint-plugin-unused-imports": "^4.4.1",
|
|
206
|
+
"eslint-plugin-yml": "^3.1.2",
|
|
207
|
+
"eventemitter3": "^5.0.1",
|
|
208
|
+
"fast-deep-equal": "^3.1.3",
|
|
209
|
+
"figures": "^6.1.0",
|
|
210
|
+
"fuse.js": "^7.1.0",
|
|
211
|
+
"glob": "^10.4.5",
|
|
212
|
+
"globals": "^17.3.0",
|
|
213
|
+
"gpt-tokenizer": "^2.8.1",
|
|
214
|
+
"gray-matter": "^4.0.3",
|
|
215
|
+
"hast-util-to-jsx-runtime": "^2.3.6",
|
|
216
|
+
"html-url-attributes": "^3.0.1",
|
|
217
|
+
"immer": "^11.1.8",
|
|
218
|
+
"ink": "^6.0.0",
|
|
219
|
+
"jose": "^6.1.3",
|
|
220
|
+
"json-stable-stringify": "^1.2.1",
|
|
221
|
+
"just-diff": "^6.0.2",
|
|
222
|
+
"katex": "^0.16.47",
|
|
223
|
+
"leva": "^0.10.1",
|
|
224
|
+
"lexical": "0.42.0",
|
|
225
|
+
"lodash-es": "^4.17.21",
|
|
226
|
+
"lucide-react": "^1.17.0",
|
|
227
|
+
"markdown-to-txt": "^2.0.1",
|
|
228
|
+
"marked": "^17.0.6",
|
|
229
|
+
"mermaid": "^11.15.0",
|
|
230
|
+
"motion": "^12.40.0",
|
|
231
|
+
"numeral": "^2.0.6",
|
|
232
|
+
"openai": "^6.15.0",
|
|
233
|
+
"p-map": "^7.0.3",
|
|
234
|
+
"pangu": "^4.0.7",
|
|
235
|
+
"polished": "^4.3.1",
|
|
236
|
+
"postcss-less": "^6.0.0",
|
|
237
|
+
"postcss-styled-syntax": "^0.7.0",
|
|
238
|
+
"posthog-js": "^1.103.0",
|
|
239
|
+
"prettier-plugin-packagejson": "^2.5.6",
|
|
240
|
+
"prettier-plugin-sh": "^0.14.0",
|
|
241
|
+
"prettier-plugin-sort-json": "^4.1.0",
|
|
242
|
+
"query-string": "^9.4.0",
|
|
243
|
+
"rc-collapse": "^4.0.0",
|
|
244
|
+
"rc-footer": "^0.6.8",
|
|
245
|
+
"rc-image": "^7.12.0",
|
|
246
|
+
"rc-input-number": "^9.5.0",
|
|
247
|
+
"rc-menu": "^9.16.1",
|
|
248
|
+
"re-resizable": "^6.11.2",
|
|
249
|
+
"react": "^19.0.0",
|
|
250
|
+
"react-avatar-editor": "^15.1.0",
|
|
251
|
+
"react-error-boundary": "^6.1.2",
|
|
252
|
+
"react-hotkeys-hook": "^5.3.2",
|
|
253
|
+
"react-markdown": "^10.1.0",
|
|
254
|
+
"react-merge-refs": "^3.0.2",
|
|
255
|
+
"react-rnd": "^10.5.3",
|
|
256
|
+
"react-zoom-pan-pinch": "^3.7.0",
|
|
257
|
+
"recharts": "^2.15.4",
|
|
258
|
+
"rehype-github-alerts": "^4.2.0",
|
|
259
|
+
"rehype-katex": "^7.0.1",
|
|
260
|
+
"rehype-raw": "^7.0.0",
|
|
261
|
+
"remark": "^15.0.1",
|
|
262
|
+
"remark-breaks": "^4.0.0",
|
|
263
|
+
"remark-cjk-friendly": "^2.0.1",
|
|
264
|
+
"remark-frontmatter": "^5.0.0",
|
|
265
|
+
"remark-gfm": "^4.0.1",
|
|
266
|
+
"remark-github": "^12.0.0",
|
|
267
|
+
"remark-lint": "^10.0.0",
|
|
268
|
+
"remark-lint-checkbox-content-indent": "^5.0.0",
|
|
269
|
+
"remark-lint-frontmatter-schema": "^3.15.4",
|
|
270
|
+
"remark-lint-heading-whitespace": "^1.0.0",
|
|
271
|
+
"remark-lint-linebreak-style": "^4.0.0",
|
|
272
|
+
"remark-lint-list-item-indent": "^4.0.0",
|
|
273
|
+
"remark-lint-list-item-spacing": "^5.0.0",
|
|
274
|
+
"remark-lint-no-duplicate-headings-in-section": "^4.0.0",
|
|
275
|
+
"remark-lint-no-empty-sections": "^4.0.0",
|
|
276
|
+
"remark-lint-no-empty-url": "^4.0.0",
|
|
277
|
+
"remark-lint-no-file-name-irregular-characters": "^3.0.0",
|
|
278
|
+
"remark-lint-no-heading-indent": "^5.0.0",
|
|
279
|
+
"remark-lint-no-heading-like-paragraph": "^4.0.0",
|
|
280
|
+
"remark-lint-no-paragraph-content-indent": "^5.0.0",
|
|
281
|
+
"remark-lint-no-reference-like-url": "^4.0.0",
|
|
282
|
+
"remark-lint-no-shell-dollars": "^4.0.0",
|
|
283
|
+
"remark-lint-no-tabs": "^4.0.0",
|
|
284
|
+
"remark-lint-no-unneeded-full-reference-image": "^4.0.0",
|
|
285
|
+
"remark-lint-no-unneeded-full-reference-link": "^4.0.0",
|
|
286
|
+
"remark-lint-ordered-list-marker-value": "^4.0.0",
|
|
287
|
+
"remark-lint-write-good": "^1.2.0",
|
|
288
|
+
"remark-math": "^6.0.0",
|
|
289
|
+
"remark-pangu": "^2.2.0",
|
|
290
|
+
"remark-parse": "^11.0.0",
|
|
291
|
+
"remark-preset-lint-consistent": "^6.0.0",
|
|
292
|
+
"remark-preset-lint-markdown-style-guide": "^6.0.0",
|
|
293
|
+
"remark-preset-lint-recommended": "^7.0.0",
|
|
294
|
+
"remark-rehype": "^11.1.2",
|
|
295
|
+
"remark-remove-unused-definitions": "^2.0.0",
|
|
296
|
+
"remark-sort-definitions": "^2.0.0",
|
|
297
|
+
"remark-stringify": "^11.0.0",
|
|
298
|
+
"remark-supersub": "^1.0.0",
|
|
299
|
+
"remark-textr": "^6.1.0",
|
|
300
|
+
"remark-toc": "^9.0.0",
|
|
301
|
+
"remend": "^1.3.0",
|
|
302
|
+
"semantic-release-config-gitmoji": "^1.5.3",
|
|
303
|
+
"shiki": "^4.2.0",
|
|
304
|
+
"shiki-stream": "^0.1.5",
|
|
305
|
+
"stylelint-config-clean-order": "^7.0.0",
|
|
306
|
+
"stylelint-config-recommended": "^14.0.1",
|
|
307
|
+
"stylelint-config-standard": "^37.0.0",
|
|
308
|
+
"stylelint-less": "^3.0.1",
|
|
309
|
+
"stylelint-order": "^6.0.4",
|
|
310
|
+
"stylelint-use-logical-spec": "^5.0.1",
|
|
311
|
+
"swr": "^2.4.1",
|
|
312
|
+
"ts-key-enum": "^3.0.13",
|
|
313
|
+
"ts-md5": "^2.0.1",
|
|
314
|
+
"typescript-eslint": "^8.55.0",
|
|
315
|
+
"unified": "^11.0.5",
|
|
316
|
+
"unist-util-visit": "^5.0.0",
|
|
317
|
+
"update-notifier": "^7.3.1",
|
|
318
|
+
"url-join": "^5.0.0",
|
|
319
|
+
"use-merge-value": "^1.2.0",
|
|
320
|
+
"uuid": "^13.0.2",
|
|
321
|
+
"vfile": "^6.0.3",
|
|
322
|
+
"virtua": "^0.49.1",
|
|
323
|
+
"zod": "^3.22.4",
|
|
324
|
+
"zustand": "^5.0.3"
|
|
325
|
+
},
|
|
326
|
+
"optionalDependencies": {
|
|
327
|
+
"posthog-node": "^4.2.1"
|
|
328
|
+
}
|
|
329
|
+
}
|