@react-cupertino-ui/ai-prompt-input 1.0.2
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/LICENSE +24 -0
- package/dist/index.css +152 -0
- package/dist/index.d.ts +16 -0
- package/dist/index.js +44 -0
- package/dist/index.scss +154 -0
- package/package.json +36 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2024 Anderson Lima
|
|
4
|
+
|
|
5
|
+
This project is inspired by Apple's design principles but is not affiliated with, endorsed, or sponsored by Apple Inc.
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
9
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
10
|
+
in the Software without restriction, including without limitation the rights
|
|
11
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
12
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
13
|
+
furnished to do so, subject to the following conditions:
|
|
14
|
+
|
|
15
|
+
The above copyright notice and this permission notice shall be included in all
|
|
16
|
+
copies or substantial portions of the Software.
|
|
17
|
+
|
|
18
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
19
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
20
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
21
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
22
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
23
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
24
|
+
SOFTWARE.
|
package/dist/index.css
ADDED
|
@@ -0,0 +1,152 @@
|
|
|
1
|
+
.react-cupertino-ui-ai-prompt-input {
|
|
2
|
+
display: flex;
|
|
3
|
+
flex-direction: column;
|
|
4
|
+
gap: 0.65rem;
|
|
5
|
+
width: 100%;
|
|
6
|
+
}
|
|
7
|
+
.react-cupertino-ui-ai-prompt-input__shell {
|
|
8
|
+
display: flex;
|
|
9
|
+
align-items: flex-end;
|
|
10
|
+
gap: 0.6rem;
|
|
11
|
+
padding: 0.9rem 1rem;
|
|
12
|
+
border-radius: 1.25rem;
|
|
13
|
+
background: rgba(255, 255, 255, 0.65);
|
|
14
|
+
backdrop-filter: blur(var(--glass-blur, 36px)) saturate(var(--glass-saturation, 180%));
|
|
15
|
+
-webkit-backdrop-filter: blur(var(--glass-blur, 36px)) saturate(var(--glass-saturation, 180%));
|
|
16
|
+
border: 1px solid var(--glass-border, rgba(255, 255, 255, 0.18));
|
|
17
|
+
box-shadow: var(--glass-shadow, 0 8px 32px rgba(0, 0, 0, 0.12));
|
|
18
|
+
position: relative;
|
|
19
|
+
overflow: hidden;
|
|
20
|
+
}
|
|
21
|
+
.react-cupertino-ui-ai-prompt-input__shell::before {
|
|
22
|
+
content: "";
|
|
23
|
+
position: absolute;
|
|
24
|
+
inset: 0;
|
|
25
|
+
background: var(--glass-highlight, linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, transparent 55%));
|
|
26
|
+
border-radius: inherit;
|
|
27
|
+
opacity: var(--glass-highlight-opacity, 0.95);
|
|
28
|
+
pointer-events: none;
|
|
29
|
+
mix-blend-mode: screen;
|
|
30
|
+
}
|
|
31
|
+
.react-cupertino-ui-ai-prompt-input__shell {
|
|
32
|
+
box-shadow: 0 20px 45px rgba(10, 10, 13, 0.14);
|
|
33
|
+
position: relative;
|
|
34
|
+
}
|
|
35
|
+
.react-cupertino-ui-ai-prompt-input[data-disabled=true] {
|
|
36
|
+
opacity: 0.6;
|
|
37
|
+
}
|
|
38
|
+
.react-cupertino-ui-ai-prompt-input__attachment {
|
|
39
|
+
width: 2.4rem;
|
|
40
|
+
height: 2.4rem;
|
|
41
|
+
border-radius: 999px;
|
|
42
|
+
border: none;
|
|
43
|
+
background: rgba(255, 255, 255, 0.55);
|
|
44
|
+
display: inline-flex;
|
|
45
|
+
align-items: center;
|
|
46
|
+
justify-content: center;
|
|
47
|
+
cursor: pointer;
|
|
48
|
+
transition: background 240ms ease, transform 240ms ease;
|
|
49
|
+
}
|
|
50
|
+
.react-cupertino-ui-ai-prompt-input__attachment span::before {
|
|
51
|
+
content: "";
|
|
52
|
+
width: 1.05rem;
|
|
53
|
+
height: 1.05rem;
|
|
54
|
+
border: 2px solid rgba(0, 0, 0, 0.6);
|
|
55
|
+
border-top: transparent;
|
|
56
|
+
border-right: transparent;
|
|
57
|
+
border-radius: 4px;
|
|
58
|
+
transform: rotate(-45deg);
|
|
59
|
+
}
|
|
60
|
+
.react-cupertino-ui-ai-prompt-input__attachment:hover:not(:disabled) {
|
|
61
|
+
background: rgba(255, 255, 255, 0.8);
|
|
62
|
+
}
|
|
63
|
+
.react-cupertino-ui-ai-prompt-input__attachment:active:not(:disabled) {
|
|
64
|
+
transform: scale(0.96);
|
|
65
|
+
}
|
|
66
|
+
.react-cupertino-ui-ai-prompt-input__textarea {
|
|
67
|
+
flex: 1;
|
|
68
|
+
border: none;
|
|
69
|
+
background: transparent;
|
|
70
|
+
resize: none;
|
|
71
|
+
font: inherit;
|
|
72
|
+
color: inherit;
|
|
73
|
+
line-height: 1.4;
|
|
74
|
+
max-height: 200px;
|
|
75
|
+
padding: 0;
|
|
76
|
+
margin: 0;
|
|
77
|
+
outline: none;
|
|
78
|
+
}
|
|
79
|
+
.react-cupertino-ui-ai-prompt-input__textarea::placeholder {
|
|
80
|
+
color: rgba(15, 15, 20, 0.45);
|
|
81
|
+
}
|
|
82
|
+
.react-cupertino-ui-ai-prompt-input__submit {
|
|
83
|
+
width: 2.4rem;
|
|
84
|
+
height: 2.4rem;
|
|
85
|
+
border-radius: 999px;
|
|
86
|
+
border: none;
|
|
87
|
+
display: inline-flex;
|
|
88
|
+
align-items: center;
|
|
89
|
+
justify-content: center;
|
|
90
|
+
cursor: pointer;
|
|
91
|
+
background: var(--color-blue, #007aff);
|
|
92
|
+
color: white;
|
|
93
|
+
transition: transform 240ms ease, filter 240ms ease, opacity 240ms ease;
|
|
94
|
+
}
|
|
95
|
+
.react-cupertino-ui-ai-prompt-input__submit[disabled] {
|
|
96
|
+
opacity: 0.45;
|
|
97
|
+
cursor: not-allowed;
|
|
98
|
+
}
|
|
99
|
+
.react-cupertino-ui-ai-prompt-input__submit span {
|
|
100
|
+
width: 1rem;
|
|
101
|
+
height: 1rem;
|
|
102
|
+
position: relative;
|
|
103
|
+
display: inline-block;
|
|
104
|
+
}
|
|
105
|
+
.react-cupertino-ui-ai-prompt-input__submit span:not(.spinner)::before,
|
|
106
|
+
.react-cupertino-ui-ai-prompt-input__submit span:not(.spinner)::after {
|
|
107
|
+
content: "";
|
|
108
|
+
position: absolute;
|
|
109
|
+
inset: 0;
|
|
110
|
+
border-radius: 1px;
|
|
111
|
+
background: currentColor;
|
|
112
|
+
}
|
|
113
|
+
.react-cupertino-ui-ai-prompt-input__submit span:not(.spinner)::before {
|
|
114
|
+
width: 2px;
|
|
115
|
+
height: 100%;
|
|
116
|
+
left: 45%;
|
|
117
|
+
}
|
|
118
|
+
.react-cupertino-ui-ai-prompt-input__submit span:not(.spinner)::after {
|
|
119
|
+
width: 60%;
|
|
120
|
+
height: 2px;
|
|
121
|
+
top: 48%;
|
|
122
|
+
transform: rotate(45deg);
|
|
123
|
+
transform-origin: center right;
|
|
124
|
+
}
|
|
125
|
+
.react-cupertino-ui-ai-prompt-input__submit .spinner {
|
|
126
|
+
border: 2px solid rgba(255, 255, 255, 0.6);
|
|
127
|
+
border-top-color: white;
|
|
128
|
+
animation: prompt-spin 0.8s linear infinite;
|
|
129
|
+
border-radius: 999px;
|
|
130
|
+
}
|
|
131
|
+
.react-cupertino-ui-ai-prompt-input__helper {
|
|
132
|
+
margin: 0;
|
|
133
|
+
font-size: 0.85rem;
|
|
134
|
+
color: rgba(16, 16, 20, 0.5);
|
|
135
|
+
}
|
|
136
|
+
.react-cupertino-ui-ai-prompt-input__suggestions {
|
|
137
|
+
display: flex;
|
|
138
|
+
gap: 0.5rem;
|
|
139
|
+
flex-wrap: wrap;
|
|
140
|
+
}
|
|
141
|
+
|
|
142
|
+
@keyframes prompt-spin {
|
|
143
|
+
to {
|
|
144
|
+
transform: rotate(360deg);
|
|
145
|
+
}
|
|
146
|
+
}
|
|
147
|
+
@media (prefers-reduced-motion: reduce) {
|
|
148
|
+
.react-cupertino-ui-ai-prompt-input__submit,
|
|
149
|
+
.react-cupertino-ui-ai-prompt-input__attachment {
|
|
150
|
+
transition-duration: 0.1s;
|
|
151
|
+
}
|
|
152
|
+
}
|
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import { BaseProps } from "@react-cupertino-ui/shared/lib/interfaces/BaseProps";
|
|
3
|
+
import "./index.scss";
|
|
4
|
+
export interface AIPromptInputProps extends Omit<BaseProps<HTMLDivElement>, "children"> {
|
|
5
|
+
value: string;
|
|
6
|
+
onChange: (value: string) => void;
|
|
7
|
+
onSubmit: (prompt: string) => void;
|
|
8
|
+
placeholder?: string;
|
|
9
|
+
disabled?: boolean;
|
|
10
|
+
loading?: boolean;
|
|
11
|
+
suggestions?: string[];
|
|
12
|
+
attachments?: boolean;
|
|
13
|
+
helperText?: string;
|
|
14
|
+
}
|
|
15
|
+
declare const AIPromptInput: React.ForwardRefExoticComponent<AIPromptInputProps & React.RefAttributes<HTMLDivElement>>;
|
|
16
|
+
export { AIPromptInput };
|
package/dist/index.js
ADDED
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
import * as React from "react";
|
|
3
|
+
import { cn } from "@react-cupertino-ui/shared/lib/utils";
|
|
4
|
+
import { SuggestionChip } from "@react-cupertino-ui/suggestion-chip";
|
|
5
|
+
import "./index.scss";
|
|
6
|
+
const AIPromptInput = React.forwardRef((props, ref) => {
|
|
7
|
+
const { className, value, onChange, onSubmit, placeholder = "Ask Apple Intelligence...", disabled = false, loading = false, suggestions, attachments = false, helperText, ...rest } = props;
|
|
8
|
+
const textareaRef = React.useRef(null);
|
|
9
|
+
const containerRef = React.useRef(null);
|
|
10
|
+
React.useImperativeHandle(ref, () => containerRef.current);
|
|
11
|
+
const resizeTextarea = React.useCallback(() => {
|
|
12
|
+
const textarea = textareaRef.current;
|
|
13
|
+
if (!textarea)
|
|
14
|
+
return;
|
|
15
|
+
textarea.style.height = "auto";
|
|
16
|
+
textarea.style.height = `${Math.min(textarea.scrollHeight, 200)}px`;
|
|
17
|
+
}, []);
|
|
18
|
+
React.useEffect(() => {
|
|
19
|
+
resizeTextarea();
|
|
20
|
+
}, [value, resizeTextarea]);
|
|
21
|
+
const handleChange = (event) => {
|
|
22
|
+
onChange(event.target.value);
|
|
23
|
+
};
|
|
24
|
+
const handleKeyDown = (event) => {
|
|
25
|
+
if (event.key === "Enter" && !event.shiftKey) {
|
|
26
|
+
event.preventDefault();
|
|
27
|
+
submitPrompt();
|
|
28
|
+
}
|
|
29
|
+
};
|
|
30
|
+
const submitPrompt = () => {
|
|
31
|
+
const trimmed = value.trim();
|
|
32
|
+
if (!trimmed || loading || disabled)
|
|
33
|
+
return;
|
|
34
|
+
onSubmit(trimmed);
|
|
35
|
+
};
|
|
36
|
+
const handleSuggestion = (suggestion) => {
|
|
37
|
+
onChange(suggestion);
|
|
38
|
+
onSubmit(suggestion);
|
|
39
|
+
};
|
|
40
|
+
const canSubmit = Boolean(value.trim()) && !loading && !disabled;
|
|
41
|
+
return (_jsxs("div", { ref: containerRef, className: cn("react-cupertino-ui-ai-prompt-input", className), "data-disabled": disabled || undefined, ...rest, children: [_jsxs("div", { className: "react-cupertino-ui-ai-prompt-input__shell", children: [attachments ? (_jsx("button", { type: "button", className: "react-cupertino-ui-ai-prompt-input__attachment", "aria-label": "Add attachment", disabled: disabled || loading, children: _jsx("span", { "aria-hidden": "true" }) })) : null, _jsx("textarea", { ref: textareaRef, className: "react-cupertino-ui-ai-prompt-input__textarea", value: value, placeholder: placeholder, onChange: handleChange, onKeyDown: handleKeyDown, rows: 1, disabled: disabled }), _jsx("button", { type: "button", className: "react-cupertino-ui-ai-prompt-input__submit", "aria-label": "Send prompt", onClick: submitPrompt, disabled: !canSubmit, "data-loading": loading ? "true" : undefined, children: loading ? _jsx("span", { className: "spinner", "aria-hidden": "true" }) : _jsx("span", { "aria-hidden": "true" }) })] }), helperText ? (_jsx("p", { className: "react-cupertino-ui-ai-prompt-input__helper", children: helperText })) : null, suggestions && suggestions.length > 0 ? (_jsx("div", { className: "react-cupertino-ui-ai-prompt-input__suggestions", children: suggestions.map((suggestion) => (_jsx(SuggestionChip, { size: "sm", variant: "glass", onClick: () => handleSuggestion(suggestion), children: suggestion }, suggestion))) })) : null] }));
|
|
42
|
+
});
|
|
43
|
+
AIPromptInput.displayName = "AIPromptInput";
|
|
44
|
+
export { AIPromptInput };
|
package/dist/index.scss
ADDED
|
@@ -0,0 +1,154 @@
|
|
|
1
|
+
@use "@/styles/mixins/glass" as glass;
|
|
2
|
+
|
|
3
|
+
.react-cupertino-ui-ai-prompt-input {
|
|
4
|
+
display: flex;
|
|
5
|
+
flex-direction: column;
|
|
6
|
+
gap: 0.65rem;
|
|
7
|
+
width: 100%;
|
|
8
|
+
|
|
9
|
+
&__shell {
|
|
10
|
+
display: flex;
|
|
11
|
+
align-items: flex-end;
|
|
12
|
+
gap: 0.6rem;
|
|
13
|
+
padding: 0.9rem 1rem;
|
|
14
|
+
border-radius: 1.25rem;
|
|
15
|
+
@include glass.glass-panel(light, var(--glass-blur, 36px), 0.65);
|
|
16
|
+
box-shadow: 0 20px 45px rgba(10, 10, 13, 0.14);
|
|
17
|
+
position: relative;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
&[data-disabled="true"] {
|
|
21
|
+
opacity: 0.6;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
&__attachment {
|
|
25
|
+
width: 2.4rem;
|
|
26
|
+
height: 2.4rem;
|
|
27
|
+
border-radius: 999px;
|
|
28
|
+
border: none;
|
|
29
|
+
background: rgba(255, 255, 255, 0.55);
|
|
30
|
+
display: inline-flex;
|
|
31
|
+
align-items: center;
|
|
32
|
+
justify-content: center;
|
|
33
|
+
cursor: pointer;
|
|
34
|
+
transition: background 240ms ease, transform 240ms ease;
|
|
35
|
+
|
|
36
|
+
span::before {
|
|
37
|
+
content: "";
|
|
38
|
+
width: 1.05rem;
|
|
39
|
+
height: 1.05rem;
|
|
40
|
+
border: 2px solid rgba(0, 0, 0, 0.6);
|
|
41
|
+
border-top: transparent;
|
|
42
|
+
border-right: transparent;
|
|
43
|
+
border-radius: 4px;
|
|
44
|
+
transform: rotate(-45deg);
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
&:hover:not(:disabled) {
|
|
48
|
+
background: rgba(255, 255, 255, 0.8);
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
&:active:not(:disabled) {
|
|
52
|
+
transform: scale(0.96);
|
|
53
|
+
}
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
&__textarea {
|
|
57
|
+
flex: 1;
|
|
58
|
+
border: none;
|
|
59
|
+
background: transparent;
|
|
60
|
+
resize: none;
|
|
61
|
+
font: inherit;
|
|
62
|
+
color: inherit;
|
|
63
|
+
line-height: 1.4;
|
|
64
|
+
max-height: 200px;
|
|
65
|
+
padding: 0;
|
|
66
|
+
margin: 0;
|
|
67
|
+
outline: none;
|
|
68
|
+
|
|
69
|
+
&::placeholder {
|
|
70
|
+
color: rgba(15, 15, 20, 0.45);
|
|
71
|
+
}
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
&__submit {
|
|
75
|
+
width: 2.4rem;
|
|
76
|
+
height: 2.4rem;
|
|
77
|
+
border-radius: 999px;
|
|
78
|
+
border: none;
|
|
79
|
+
display: inline-flex;
|
|
80
|
+
align-items: center;
|
|
81
|
+
justify-content: center;
|
|
82
|
+
cursor: pointer;
|
|
83
|
+
background: var(--color-blue, #007aff);
|
|
84
|
+
color: white;
|
|
85
|
+
transition: transform 240ms ease, filter 240ms ease, opacity 240ms ease;
|
|
86
|
+
|
|
87
|
+
&[disabled] {
|
|
88
|
+
opacity: 0.45;
|
|
89
|
+
cursor: not-allowed;
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
span {
|
|
93
|
+
width: 1rem;
|
|
94
|
+
height: 1rem;
|
|
95
|
+
position: relative;
|
|
96
|
+
display: inline-block;
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
span:not(.spinner)::before,
|
|
100
|
+
span:not(.spinner)::after {
|
|
101
|
+
content: "";
|
|
102
|
+
position: absolute;
|
|
103
|
+
inset: 0;
|
|
104
|
+
border-radius: 1px;
|
|
105
|
+
background: currentColor;
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
span:not(.spinner)::before {
|
|
109
|
+
width: 2px;
|
|
110
|
+
height: 100%;
|
|
111
|
+
left: 45%;
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
span:not(.spinner)::after {
|
|
115
|
+
width: 60%;
|
|
116
|
+
height: 2px;
|
|
117
|
+
top: 48%;
|
|
118
|
+
transform: rotate(45deg);
|
|
119
|
+
transform-origin: center right;
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
.spinner {
|
|
123
|
+
border: 2px solid rgba(255, 255, 255, 0.6);
|
|
124
|
+
border-top-color: white;
|
|
125
|
+
animation: prompt-spin 0.8s linear infinite;
|
|
126
|
+
border-radius: 999px;
|
|
127
|
+
}
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
&__helper {
|
|
131
|
+
margin: 0;
|
|
132
|
+
font-size: 0.85rem;
|
|
133
|
+
color: rgba(16, 16, 20, 0.5);
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
&__suggestions {
|
|
137
|
+
display: flex;
|
|
138
|
+
gap: 0.5rem;
|
|
139
|
+
flex-wrap: wrap;
|
|
140
|
+
}
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
@keyframes prompt-spin {
|
|
144
|
+
to {
|
|
145
|
+
transform: rotate(360deg);
|
|
146
|
+
}
|
|
147
|
+
}
|
|
148
|
+
|
|
149
|
+
@media (prefers-reduced-motion: reduce) {
|
|
150
|
+
.react-cupertino-ui-ai-prompt-input__submit,
|
|
151
|
+
.react-cupertino-ui-ai-prompt-input__attachment {
|
|
152
|
+
transition-duration: 0.1s;
|
|
153
|
+
}
|
|
154
|
+
}
|
package/package.json
ADDED
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@react-cupertino-ui/ai-prompt-input",
|
|
3
|
+
"version": "1.0.2",
|
|
4
|
+
"description": "AI Prompt Input component from React Cupertino UI",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "./dist/index.js",
|
|
7
|
+
"module": "./dist/index.js",
|
|
8
|
+
"types": "./dist/index.d.ts",
|
|
9
|
+
"files": [
|
|
10
|
+
"dist"
|
|
11
|
+
],
|
|
12
|
+
"sideEffects": [
|
|
13
|
+
"./dist/**/*.css",
|
|
14
|
+
"./dist/**/*.scss"
|
|
15
|
+
],
|
|
16
|
+
"scripts": {
|
|
17
|
+
"build": "tsc -p tsconfig.build.json && npm run build:styles",
|
|
18
|
+
"build:styles": "node ../../../scripts/build-styles.mjs"
|
|
19
|
+
},
|
|
20
|
+
"peerDependencies": {
|
|
21
|
+
"react": "^18.3.1",
|
|
22
|
+
"react-dom": "^18.3.1"
|
|
23
|
+
},
|
|
24
|
+
"dependencies": {
|
|
25
|
+
"@radix-ui/react-slot": "^1.1.0",
|
|
26
|
+
"@react-cupertino-ui/shared": "workspace:*",
|
|
27
|
+
"@react-cupertino-ui/suggestion-chip": "workspace:*"
|
|
28
|
+
},
|
|
29
|
+
"devDependencies": {
|
|
30
|
+
"typescript": "^5.2.2"
|
|
31
|
+
},
|
|
32
|
+
"gitHead": "3f53987bdb936a331665691b517c2ba9984777f8",
|
|
33
|
+
"publishConfig": {
|
|
34
|
+
"access": "public"
|
|
35
|
+
}
|
|
36
|
+
}
|