@pickaxeproject/react 5.6.0 → 5.6.1-beta.0
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/dist/cjs/components/Pickaxe/Chat/History/index.js +1 -1
- package/dist/cjs/components/Pickaxe/Chat/Input.js +1 -1
- package/dist/cjs/components/Pickaxe/Form/Questions/Submit.js +1 -1
- package/dist/cjs/components/Pickaxe/Provider.js +1 -1
- package/dist/cjs/components/Pickaxe/common/AccessGroupCardPreview.js +1 -0
- package/dist/cjs/components/Pickaxe/common/PickaxeAvatar.js +1 -0
- package/dist/cjs/components/Pickaxe/common/PickaxeCommon.js +1 -0
- package/dist/cjs/components/Pickaxe/common/PickaxeCurrency.js +1 -0
- package/dist/cjs/components/Pickaxe/common/PickaxeUpgradeCard.js +1 -1
- package/dist/cjs/components/Pickaxe/index.js +1 -1
- package/dist/cjs/node_modules/.pnpm/cose-base@1.0.3/node_modules/cose-base/cose-base.js +1 -1
- package/dist/cjs/node_modules/.pnpm/cose-base@2.2.0/node_modules/cose-base/cose-base.js +1 -1
- package/dist/cjs/node_modules/.pnpm/layout-base@1.0.2/node_modules/layout-base/layout-base.js +1 -1
- package/dist/cjs/node_modules/.pnpm/layout-base@2.0.1/node_modules/layout-base/layout-base.js +1 -1
- package/dist/cjs/src/components/Pickaxe/Provider.d.ts +3 -1
- package/dist/cjs/src/components/Pickaxe/ResponseProvider.d.ts +6 -3
- package/dist/cjs/src/components/Pickaxe/common/AccessGroupCardPreview.d.ts +9 -0
- package/dist/cjs/src/components/Pickaxe/common/PickaxeAvatar.d.ts +16 -0
- package/dist/cjs/src/components/Pickaxe/common/PickaxeCommon.d.ts +2 -0
- package/dist/cjs/src/components/Pickaxe/common/PickaxeCurrency.d.ts +7 -0
- package/dist/cjs/src/components/Pickaxe/common/PickaxeUpgradeCard.d.ts +1 -1
- package/dist/cjs/src/hooks/pickaxe/usePickaxeContext.d.ts +1 -0
- package/dist/cjs/src/types/response.d.ts +8 -0
- package/dist/esm/components/Pickaxe/Chat/History/index.js +1 -1
- package/dist/esm/components/Pickaxe/Chat/Input.js +1 -1
- package/dist/esm/components/Pickaxe/Form/Questions/Submit.js +1 -1
- package/dist/esm/components/Pickaxe/Provider.js +1 -1
- package/dist/esm/components/Pickaxe/common/AccessGroupCardPreview.js +1 -0
- package/dist/esm/components/Pickaxe/common/PickaxeAvatar.js +1 -0
- package/dist/esm/components/Pickaxe/common/PickaxeCommon.js +1 -0
- package/dist/esm/components/Pickaxe/common/PickaxeCurrency.js +1 -0
- package/dist/esm/components/Pickaxe/common/PickaxeUpgradeCard.js +1 -1
- package/dist/esm/components/Pickaxe/index.js +1 -1
- package/dist/esm/node_modules/.pnpm/cose-base@1.0.3/node_modules/cose-base/cose-base.js +1 -1
- package/dist/esm/node_modules/.pnpm/cose-base@2.2.0/node_modules/cose-base/cose-base.js +1 -1
- package/dist/esm/node_modules/.pnpm/layout-base@1.0.2/node_modules/layout-base/layout-base.js +1 -1
- package/dist/esm/node_modules/.pnpm/layout-base@2.0.1/node_modules/layout-base/layout-base.js +1 -1
- package/dist/esm/src/components/Pickaxe/Provider.d.ts +3 -1
- package/dist/esm/src/components/Pickaxe/ResponseProvider.d.ts +6 -3
- package/dist/esm/src/components/Pickaxe/common/AccessGroupCardPreview.d.ts +9 -0
- package/dist/esm/src/components/Pickaxe/common/PickaxeAvatar.d.ts +16 -0
- package/dist/esm/src/components/Pickaxe/common/PickaxeCommon.d.ts +2 -0
- package/dist/esm/src/components/Pickaxe/common/PickaxeCurrency.d.ts +7 -0
- package/dist/esm/src/components/Pickaxe/common/PickaxeUpgradeCard.d.ts +1 -1
- package/dist/esm/src/hooks/pickaxe/usePickaxeContext.d.ts +1 -0
- package/dist/esm/src/types/response.d.ts +8 -0
- package/package.json +205 -202
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import * as AvatarPrimitive from "@radix-ui/react-avatar";
|
|
3
|
+
declare const Avatar: React.ForwardRefExoticComponent<Omit<AvatarPrimitive.AvatarProps & React.RefAttributes<HTMLSpanElement>, "ref"> & React.RefAttributes<HTMLSpanElement>>;
|
|
4
|
+
declare const AvatarImage: React.ForwardRefExoticComponent<Omit<AvatarPrimitive.AvatarImageProps & React.RefAttributes<HTMLImageElement>, "ref"> & React.RefAttributes<HTMLImageElement>>;
|
|
5
|
+
declare const AvatarFallback: React.ForwardRefExoticComponent<Omit<AvatarPrimitive.AvatarFallbackProps & React.RefAttributes<HTMLSpanElement>, "ref"> & React.RefAttributes<HTMLSpanElement>>;
|
|
6
|
+
export type AvatarGroupItem = {
|
|
7
|
+
src?: string;
|
|
8
|
+
initials: string;
|
|
9
|
+
};
|
|
10
|
+
export interface AvatarGroupProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
11
|
+
data: AvatarGroupItem[];
|
|
12
|
+
max?: number;
|
|
13
|
+
avatarClassName?: string;
|
|
14
|
+
}
|
|
15
|
+
declare const AvatarGroup: React.ForwardRefExoticComponent<AvatarGroupProps & React.RefAttributes<HTMLDivElement>>;
|
|
16
|
+
export { Avatar, AvatarImage, AvatarFallback, AvatarGroup };
|
|
@@ -3,5 +3,5 @@ interface PickaxeUpgradeCardProps {
|
|
|
3
3
|
iconClassName?: string;
|
|
4
4
|
htmlClassName?: string;
|
|
5
5
|
}
|
|
6
|
-
declare const PickaxeUpgradeCard: ({ className, iconClassName, htmlClassName, }: PickaxeUpgradeCardProps) => import("react/jsx-runtime").JSX.Element;
|
|
6
|
+
declare const PickaxeUpgradeCard: ({ className, iconClassName, htmlClassName, }: PickaxeUpgradeCardProps) => import("react/jsx-runtime").JSX.Element | null;
|
|
7
7
|
export default PickaxeUpgradeCard;
|
|
@@ -10,6 +10,7 @@ export declare const usePickaxeContext: () => {
|
|
|
10
10
|
deploymentType?: import("../../components/Pickaxe/Provider").PickaxeDeploymentEmbedType | undefined;
|
|
11
11
|
deploymentDimensions?: import("../../components/Pickaxe/Provider").PickaxeDeploymentDimensions | undefined;
|
|
12
12
|
deploymentMisc?: import("../../components/Pickaxe/Provider").PickaxeDeploymentMisc | undefined;
|
|
13
|
+
portalId?: string | undefined;
|
|
13
14
|
pickaxe: import("../../types/pickaxe").LimitedPickaxe | null;
|
|
14
15
|
styles: import("../../components/Pickaxe/Provider").PickaxeProviderStyles;
|
|
15
16
|
colors: import("../../components/Pickaxe/Provider").PickaxeProviderColors;
|
|
@@ -9,3 +9,11 @@ export type MemoryStoredFormResponse = {
|
|
|
9
9
|
messageCount: number;
|
|
10
10
|
sentAt: Date;
|
|
11
11
|
};
|
|
12
|
+
export interface LimitData {
|
|
13
|
+
limitMessage: string;
|
|
14
|
+
buyUses?: any[];
|
|
15
|
+
upgradeGroups?: any[];
|
|
16
|
+
limitLink?: string;
|
|
17
|
+
accessGroupId?: string;
|
|
18
|
+
limitCTA?: string;
|
|
19
|
+
}
|
package/package.json
CHANGED
|
@@ -1,203 +1,206 @@
|
|
|
1
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
|
-
|
|
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
|
-
|
|
2
|
+
"name": "@pickaxeproject/react",
|
|
3
|
+
"version": "5.6.1-beta.0",
|
|
4
|
+
"description": "Client utility library for Pickaxe",
|
|
5
|
+
"repository": {
|
|
6
|
+
"type": "git",
|
|
7
|
+
"url": "https://github.com/pickaxeproject/v2-pickaxe-react.git"
|
|
8
|
+
},
|
|
9
|
+
"sideEffects": false,
|
|
10
|
+
"exports": {
|
|
11
|
+
".": {
|
|
12
|
+
"import": "./dist/esm/index.js",
|
|
13
|
+
"require": "./dist/cjs/index.js"
|
|
14
|
+
},
|
|
15
|
+
"./embed": {
|
|
16
|
+
"import": "./dist/esm/embed/index.js",
|
|
17
|
+
"require": "./dist/cjs/embed/index.js"
|
|
18
|
+
},
|
|
19
|
+
"./prose.css": "./dist/esm/prose.css"
|
|
20
|
+
},
|
|
21
|
+
"main": "dist/cjs/index.js",
|
|
22
|
+
"module": "dist/esm/index.js",
|
|
23
|
+
"types": "dist/esm/src/index.d.ts",
|
|
24
|
+
"files": [
|
|
25
|
+
"dist"
|
|
26
|
+
],
|
|
27
|
+
"scripts": {
|
|
28
|
+
"build": "cross-env NODE_ENV=production rollup -c",
|
|
29
|
+
"lint": "eslint . --ext .ts,.tsx,.js,.jsx",
|
|
30
|
+
"lint:format": "prettier --check src/**/*",
|
|
31
|
+
"lint:staged": "pnpm run lint && pnpm run lint:format",
|
|
32
|
+
"format": "prettier --write .",
|
|
33
|
+
"prepare": "husky install",
|
|
34
|
+
"changeset": "changeset",
|
|
35
|
+
"release": "changeset publish",
|
|
36
|
+
"publish": "pnpm build && pnpm release",
|
|
37
|
+
"dev": "storybook dev -p 6006",
|
|
38
|
+
"storybook": "storybook dev -p 6006",
|
|
39
|
+
"build-storybook": "storybook build"
|
|
40
|
+
},
|
|
41
|
+
"browserslist": [
|
|
42
|
+
"> 1%",
|
|
43
|
+
"not dead",
|
|
44
|
+
"not edge <= 18",
|
|
45
|
+
"not ie 11",
|
|
46
|
+
"not op_mini all"
|
|
47
|
+
],
|
|
48
|
+
"dependencies": {
|
|
49
|
+
"@babel/runtime": "^7.20.7",
|
|
50
|
+
"@modelcontextprotocol/sdk": "1.20.2",
|
|
51
|
+
"@radix-ui/react-avatar": "^1.1.11",
|
|
52
|
+
"franc-min": "^6.2.0",
|
|
53
|
+
"jose": "^6.1.3",
|
|
54
|
+
"lucide-react": "^0.563.0",
|
|
55
|
+
"pkce-challenge": "3.0.0",
|
|
56
|
+
"react-speech-recognition": "^4.0.1",
|
|
57
|
+
"regenerator-runtime": "^0.14.1"
|
|
58
|
+
},
|
|
59
|
+
"devDependencies": {
|
|
60
|
+
"@babel/core": "^7.20.12",
|
|
61
|
+
"@babel/plugin-transform-runtime": "^7.19.6",
|
|
62
|
+
"@babel/preset-env": "^7.20.2",
|
|
63
|
+
"@babel/preset-react": "^7.18.6",
|
|
64
|
+
"@babel/preset-typescript": "^7.26.0",
|
|
65
|
+
"@changesets/cli": "^2.26.0",
|
|
66
|
+
"@chromatic-com/storybook": "3.2.3",
|
|
67
|
+
"@mdx-js/react": "^3.1.0",
|
|
68
|
+
"@nem035/gpt-3-encoder": "^1.1.7",
|
|
69
|
+
"@prettier/plugin-xml": "^3.4.1",
|
|
70
|
+
"@rollup/plugin-alias": "^5.1.1",
|
|
71
|
+
"@rollup/plugin-babel": "^6.0.3",
|
|
72
|
+
"@rollup/plugin-commonjs": "^24.0.0",
|
|
73
|
+
"@rollup/plugin-json": "^6.1.0",
|
|
74
|
+
"@rollup/plugin-node-resolve": "^15.0.1",
|
|
75
|
+
"@rollup/plugin-replace": "^6.0.2",
|
|
76
|
+
"@rollup/plugin-terser": "^0.3.0",
|
|
77
|
+
"@storybook/addon-a11y": "^8.5.3",
|
|
78
|
+
"@storybook/addon-docs": "^8.5.3",
|
|
79
|
+
"@storybook/addon-essentials": "^8.5.3",
|
|
80
|
+
"@storybook/addon-interactions": "^8.5.3",
|
|
81
|
+
"@storybook/addon-links": "^8.5.3",
|
|
82
|
+
"@storybook/addon-themes": "^8.5.3",
|
|
83
|
+
"@storybook/blocks": "^8.5.3",
|
|
84
|
+
"@storybook/react": "^8.5.3",
|
|
85
|
+
"@storybook/react-vite": "^8.5.3",
|
|
86
|
+
"@storybook/test": "^8.5.3",
|
|
87
|
+
"@svgr/rollup": "^8.1.0",
|
|
88
|
+
"@tailwindcss/container-queries": "^0.1.1",
|
|
89
|
+
"@tanstack/react-query": "^4.36.1",
|
|
90
|
+
"@types/hast": "^3.0.4",
|
|
91
|
+
"@types/katex": "^0.16.7",
|
|
92
|
+
"@types/node": "^18.11.18",
|
|
93
|
+
"@types/react": "^18.0.26",
|
|
94
|
+
"@types/react-dom": "^18.0.10",
|
|
95
|
+
"@types/react-speech-recognition": "^3.9.6",
|
|
96
|
+
"@types/react-syntax-highlighter": "^15.5.13",
|
|
97
|
+
"@types/uuid": "^10.0.0",
|
|
98
|
+
"@types/webfontloader": "^1.6.38",
|
|
99
|
+
"@typescript-eslint/eslint-plugin": "^5.48.1",
|
|
100
|
+
"@typescript-eslint/parser": "^5.48.1",
|
|
101
|
+
"@zerollup/ts-transform-paths": "^1.7.18",
|
|
102
|
+
"autoprefixer": "^10.4.20",
|
|
103
|
+
"axios": "^1.7.9",
|
|
104
|
+
"babel-loader": "^9.1.2",
|
|
105
|
+
"clsx": "^2.1.1",
|
|
106
|
+
"copy-to-clipboard": "^3.3.3",
|
|
107
|
+
"cross-env": "^7.0.3",
|
|
108
|
+
"csv-to-markdown-table": "^1.5.0",
|
|
109
|
+
"date-fns": "^3.6.0",
|
|
110
|
+
"docx": "^9.5.1",
|
|
111
|
+
"eslint": "8.31.0",
|
|
112
|
+
"eslint-config-prettier": "^8.6.0",
|
|
113
|
+
"eslint-plugin-jsx-a11y": "^6.7.1",
|
|
114
|
+
"eslint-plugin-prettier": "^5.4.0",
|
|
115
|
+
"eslint-plugin-react": "^7.32.0",
|
|
116
|
+
"eslint-plugin-react-hooks": "^4.6.0",
|
|
117
|
+
"eslint-plugin-storybook": "^0.11.2",
|
|
118
|
+
"eventsource-parser": "^3.0.2",
|
|
119
|
+
"file-saver": "^2.0.5",
|
|
120
|
+
"framer-motion": "^11.17.0",
|
|
121
|
+
"husky": "^8.0.3",
|
|
122
|
+
"isomorphic-dompurify": "^2.20.0",
|
|
123
|
+
"katex": "^0.16.19",
|
|
124
|
+
"lottie-react": "^2.4.0",
|
|
125
|
+
"mermaid": "^11.7.0",
|
|
126
|
+
"postcss": "^8.4.49",
|
|
127
|
+
"prettier": "^3.5.3",
|
|
128
|
+
"prismjs": "^1.29.0",
|
|
129
|
+
"react": "^18.2.0",
|
|
130
|
+
"react-dom": "^18.2.0",
|
|
131
|
+
"react-intersection-observer": "^9.14.1",
|
|
132
|
+
"react-markdown": "^9.0.3",
|
|
133
|
+
"react-resizable-panels": "^3.0.3",
|
|
134
|
+
"react-syntax-highlighter": "^15.6.1",
|
|
135
|
+
"react-textarea-autosize": "^8.5.9",
|
|
136
|
+
"react-to-print": "^3.1.1",
|
|
137
|
+
"react-tooltip": "^5.28.0",
|
|
138
|
+
"react-virtualized-auto-sizer": "^1.0.25",
|
|
139
|
+
"rehype-katex": "^7.0.1",
|
|
140
|
+
"rehype-raw": "^7.0.0",
|
|
141
|
+
"remark-gfm": "^4.0.0",
|
|
142
|
+
"remark-math": "^6.0.0",
|
|
143
|
+
"rollup": "^2.79.1",
|
|
144
|
+
"rollup-plugin-delete": "^2.0.0",
|
|
145
|
+
"rollup-plugin-peer-deps-external": "^2.2.4",
|
|
146
|
+
"rollup-plugin-polyfill-node": "^0.13.0",
|
|
147
|
+
"rollup-plugin-postcss": "^4.0.2",
|
|
148
|
+
"rollup-plugin-typescript2": "^0.34.1",
|
|
149
|
+
"storybook": "^8.5.3",
|
|
150
|
+
"tailwind-merge": "^2.6.0",
|
|
151
|
+
"tailwind-scrollbar": "^3.1.0",
|
|
152
|
+
"tailwindcss": "^3.4.17",
|
|
153
|
+
"tslib": "^2.4.1",
|
|
154
|
+
"ttypescript": "^1.5.15",
|
|
155
|
+
"typescript": "^4.9.4",
|
|
156
|
+
"typescript-transform-paths": "^3.4.6",
|
|
157
|
+
"unist-util-visit": "^5.0.0",
|
|
158
|
+
"uuid": "^11.1.0",
|
|
159
|
+
"vite": "^6.0.7",
|
|
160
|
+
"vite-plugin-node-polyfills": "^0.24.0",
|
|
161
|
+
"vite-plugin-svgr": "^4.3.0",
|
|
162
|
+
"vite-tsconfig-paths": "^5.1.4",
|
|
163
|
+
"webfontloader": "^1.6.28",
|
|
164
|
+
"webpack": "^5.75.0",
|
|
165
|
+
"webpack-cli": "^5.0.1"
|
|
166
|
+
},
|
|
167
|
+
"peerDependencies": {
|
|
168
|
+
"@nem035/gpt-3-encoder": "^1.1.7",
|
|
169
|
+
"@tailwindcss/container-queries": "^0.1.1",
|
|
170
|
+
"@tanstack/react-query": "^4.36.1",
|
|
171
|
+
"axios": "^1.7.9",
|
|
172
|
+
"clsx": "^2.1.1",
|
|
173
|
+
"copy-to-clipboard": "^3.3.3",
|
|
174
|
+
"csv-to-markdown-table": "^1.5.0",
|
|
175
|
+
"date-fns": "^3.6.0",
|
|
176
|
+
"docx": "^9.5.1",
|
|
177
|
+
"eventsource-parser": "^3.0.2",
|
|
178
|
+
"file-saver": "^2.0.5",
|
|
179
|
+
"framer-motion": "^11.17.0",
|
|
180
|
+
"isomorphic-dompurify": "^2.20.0",
|
|
181
|
+
"katex": "^0.16.19",
|
|
182
|
+
"lottie-react": "^2.4.0",
|
|
183
|
+
"prismjs": "^1.29.0",
|
|
184
|
+
"react": "^16.8.0 || ^17 || ^18",
|
|
185
|
+
"react-dom": "^16.8.0 || ^17 || ^18",
|
|
186
|
+
"react-intersection-observer": "^9.14.1",
|
|
187
|
+
"react-markdown": "^9.0.3",
|
|
188
|
+
"react-syntax-highlighter": "^15.6.1",
|
|
189
|
+
"react-textarea-autosize": "^8.5.9",
|
|
190
|
+
"react-to-print": "^3.1.1",
|
|
191
|
+
"react-tooltip": "^5.28.0",
|
|
192
|
+
"react-virtualized-auto-sizer": "^1.0.25",
|
|
193
|
+
"rehype-katex": "^7.0.1",
|
|
194
|
+
"rehype-raw": "^7.0.0",
|
|
195
|
+
"remark-gfm": "^4.0.0",
|
|
196
|
+
"remark-math": "^6.0.0",
|
|
197
|
+
"tailwind-merge": "^2.6.0",
|
|
198
|
+
"tailwind-scrollbar": "^3.1.0",
|
|
199
|
+
"unist-util-visit": "^5.0.0",
|
|
200
|
+
"uuid": "^11.1.0",
|
|
201
|
+
"webfontloader": "^1.6.28"
|
|
202
|
+
},
|
|
203
|
+
"engines": {
|
|
204
|
+
"node": ">=18"
|
|
205
|
+
}
|
|
206
|
+
}
|