create-workerstack 0.1.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/bin/index.js ADDED
@@ -0,0 +1,918 @@
1
+ #!/usr/bin/env node
2
+ var __create = Object.create;
3
+ var __getProtoOf = Object.getPrototypeOf;
4
+ var __defProp = Object.defineProperty;
5
+ var __getOwnPropNames = Object.getOwnPropertyNames;
6
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
7
+ var __toESM = (mod, isNodeMode, target) => {
8
+ target = mod != null ? __create(__getProtoOf(mod)) : {};
9
+ const to = isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target;
10
+ for (let key of __getOwnPropNames(mod))
11
+ if (!__hasOwnProp.call(to, key))
12
+ __defProp(to, key, {
13
+ get: () => mod[key],
14
+ enumerable: true
15
+ });
16
+ return to;
17
+ };
18
+ var __commonJS = (cb, mod) => () => (mod || cb((mod = { exports: {} }).exports, mod), mod.exports);
19
+
20
+ // ../../node_modules/.bun/sisteransi@1.0.5/node_modules/sisteransi/src/index.js
21
+ var require_src = __commonJS((exports, module) => {
22
+ var ESC = "\x1B";
23
+ var CSI = `${ESC}[`;
24
+ var beep = "\x07";
25
+ var cursor = {
26
+ to(x, y) {
27
+ if (!y)
28
+ return `${CSI}${x + 1}G`;
29
+ return `${CSI}${y + 1};${x + 1}H`;
30
+ },
31
+ move(x, y) {
32
+ let ret = "";
33
+ if (x < 0)
34
+ ret += `${CSI}${-x}D`;
35
+ else if (x > 0)
36
+ ret += `${CSI}${x}C`;
37
+ if (y < 0)
38
+ ret += `${CSI}${-y}A`;
39
+ else if (y > 0)
40
+ ret += `${CSI}${y}B`;
41
+ return ret;
42
+ },
43
+ up: (count = 1) => `${CSI}${count}A`,
44
+ down: (count = 1) => `${CSI}${count}B`,
45
+ forward: (count = 1) => `${CSI}${count}C`,
46
+ backward: (count = 1) => `${CSI}${count}D`,
47
+ nextLine: (count = 1) => `${CSI}E`.repeat(count),
48
+ prevLine: (count = 1) => `${CSI}F`.repeat(count),
49
+ left: `${CSI}G`,
50
+ hide: `${CSI}?25l`,
51
+ show: `${CSI}?25h`,
52
+ save: `${ESC}7`,
53
+ restore: `${ESC}8`
54
+ };
55
+ var scroll = {
56
+ up: (count = 1) => `${CSI}S`.repeat(count),
57
+ down: (count = 1) => `${CSI}T`.repeat(count)
58
+ };
59
+ var erase = {
60
+ screen: `${CSI}2J`,
61
+ up: (count = 1) => `${CSI}1J`.repeat(count),
62
+ down: (count = 1) => `${CSI}J`.repeat(count),
63
+ line: `${CSI}2K`,
64
+ lineEnd: `${CSI}K`,
65
+ lineStart: `${CSI}1K`,
66
+ lines(count) {
67
+ let clear = "";
68
+ for (let i = 0;i < count; i++)
69
+ clear += this.line + (i < count - 1 ? cursor.up() : "");
70
+ if (count)
71
+ clear += cursor.left;
72
+ return clear;
73
+ }
74
+ };
75
+ module.exports = { cursor, scroll, erase, beep };
76
+ });
77
+
78
+ // ../../node_modules/.bun/picocolors@1.1.1/node_modules/picocolors/picocolors.js
79
+ var require_picocolors = __commonJS((exports, module) => {
80
+ var p = process || {};
81
+ var argv = p.argv || [];
82
+ var env = p.env || {};
83
+ var isColorSupported = !(!!env.NO_COLOR || argv.includes("--no-color")) && (!!env.FORCE_COLOR || argv.includes("--color") || p.platform === "win32" || (p.stdout || {}).isTTY && env.TERM !== "dumb" || !!env.CI);
84
+ var formatter = (open, close, replace = open) => (input) => {
85
+ let string = "" + input, index = string.indexOf(close, open.length);
86
+ return ~index ? open + replaceClose(string, close, replace, index) + close : open + string + close;
87
+ };
88
+ var replaceClose = (string, close, replace, index) => {
89
+ let result = "", cursor = 0;
90
+ do {
91
+ result += string.substring(cursor, index) + replace;
92
+ cursor = index + close.length;
93
+ index = string.indexOf(close, cursor);
94
+ } while (~index);
95
+ return result + string.substring(cursor);
96
+ };
97
+ var createColors = (enabled = isColorSupported) => {
98
+ let f = enabled ? formatter : () => String;
99
+ return {
100
+ isColorSupported: enabled,
101
+ reset: f("\x1B[0m", "\x1B[0m"),
102
+ bold: f("\x1B[1m", "\x1B[22m", "\x1B[22m\x1B[1m"),
103
+ dim: f("\x1B[2m", "\x1B[22m", "\x1B[22m\x1B[2m"),
104
+ italic: f("\x1B[3m", "\x1B[23m"),
105
+ underline: f("\x1B[4m", "\x1B[24m"),
106
+ inverse: f("\x1B[7m", "\x1B[27m"),
107
+ hidden: f("\x1B[8m", "\x1B[28m"),
108
+ strikethrough: f("\x1B[9m", "\x1B[29m"),
109
+ black: f("\x1B[30m", "\x1B[39m"),
110
+ red: f("\x1B[31m", "\x1B[39m"),
111
+ green: f("\x1B[32m", "\x1B[39m"),
112
+ yellow: f("\x1B[33m", "\x1B[39m"),
113
+ blue: f("\x1B[34m", "\x1B[39m"),
114
+ magenta: f("\x1B[35m", "\x1B[39m"),
115
+ cyan: f("\x1B[36m", "\x1B[39m"),
116
+ white: f("\x1B[37m", "\x1B[39m"),
117
+ gray: f("\x1B[90m", "\x1B[39m"),
118
+ bgBlack: f("\x1B[40m", "\x1B[49m"),
119
+ bgRed: f("\x1B[41m", "\x1B[49m"),
120
+ bgGreen: f("\x1B[42m", "\x1B[49m"),
121
+ bgYellow: f("\x1B[43m", "\x1B[49m"),
122
+ bgBlue: f("\x1B[44m", "\x1B[49m"),
123
+ bgMagenta: f("\x1B[45m", "\x1B[49m"),
124
+ bgCyan: f("\x1B[46m", "\x1B[49m"),
125
+ bgWhite: f("\x1B[47m", "\x1B[49m"),
126
+ blackBright: f("\x1B[90m", "\x1B[39m"),
127
+ redBright: f("\x1B[91m", "\x1B[39m"),
128
+ greenBright: f("\x1B[92m", "\x1B[39m"),
129
+ yellowBright: f("\x1B[93m", "\x1B[39m"),
130
+ blueBright: f("\x1B[94m", "\x1B[39m"),
131
+ magentaBright: f("\x1B[95m", "\x1B[39m"),
132
+ cyanBright: f("\x1B[96m", "\x1B[39m"),
133
+ whiteBright: f("\x1B[97m", "\x1B[39m"),
134
+ bgBlackBright: f("\x1B[100m", "\x1B[49m"),
135
+ bgRedBright: f("\x1B[101m", "\x1B[49m"),
136
+ bgGreenBright: f("\x1B[102m", "\x1B[49m"),
137
+ bgYellowBright: f("\x1B[103m", "\x1B[49m"),
138
+ bgBlueBright: f("\x1B[104m", "\x1B[49m"),
139
+ bgMagentaBright: f("\x1B[105m", "\x1B[49m"),
140
+ bgCyanBright: f("\x1B[106m", "\x1B[49m"),
141
+ bgWhiteBright: f("\x1B[107m", "\x1B[49m")
142
+ };
143
+ };
144
+ module.exports = createColors();
145
+ module.exports.createColors = createColors;
146
+ });
147
+
148
+ // ../../node_modules/.bun/@clack+prompts@0.9.1/node_modules/@clack/prompts/dist/index.mjs
149
+ import { stripVTControlCharacters as T2 } from "node:util";
150
+
151
+ // ../../node_modules/.bun/@clack+core@0.4.1/node_modules/@clack/core/dist/index.mjs
152
+ var import_sisteransi = __toESM(require_src(), 1);
153
+ var import_picocolors = __toESM(require_picocolors(), 1);
154
+ import { stdin as $, stdout as j } from "node:process";
155
+ import * as f from "node:readline";
156
+ import M from "node:readline";
157
+ import { WriteStream as U } from "node:tty";
158
+ function J({ onlyFirst: t = false } = {}) {
159
+ const F = ["[\\u001B\\u009B][[\\]()#;?]*(?:(?:(?:(?:;[-a-zA-Z\\d\\/#&.:=?%@~_]+)*|[a-zA-Z\\d]+(?:;[-a-zA-Z\\d\\/#&.:=?%@~_]*)*)?(?:\\u0007|\\u001B\\u005C|\\u009C))", "(?:(?:\\d{1,4}(?:;\\d{0,4})*)?[\\dA-PR-TZcf-nq-uy=><~]))"].join("|");
160
+ return new RegExp(F, t ? undefined : "g");
161
+ }
162
+ var Q = J();
163
+ function T(t) {
164
+ if (typeof t != "string")
165
+ throw new TypeError(`Expected a \`string\`, got \`${typeof t}\``);
166
+ return t.replace(Q, "");
167
+ }
168
+ function O(t) {
169
+ return t && t.__esModule && Object.prototype.hasOwnProperty.call(t, "default") ? t.default : t;
170
+ }
171
+ var P = { exports: {} };
172
+ (function(t) {
173
+ var u = {};
174
+ t.exports = u, u.eastAsianWidth = function(e) {
175
+ var s = e.charCodeAt(0), i = e.length == 2 ? e.charCodeAt(1) : 0, D = s;
176
+ return 55296 <= s && s <= 56319 && 56320 <= i && i <= 57343 && (s &= 1023, i &= 1023, D = s << 10 | i, D += 65536), D == 12288 || 65281 <= D && D <= 65376 || 65504 <= D && D <= 65510 ? "F" : D == 8361 || 65377 <= D && D <= 65470 || 65474 <= D && D <= 65479 || 65482 <= D && D <= 65487 || 65490 <= D && D <= 65495 || 65498 <= D && D <= 65500 || 65512 <= D && D <= 65518 ? "H" : 4352 <= D && D <= 4447 || 4515 <= D && D <= 4519 || 4602 <= D && D <= 4607 || 9001 <= D && D <= 9002 || 11904 <= D && D <= 11929 || 11931 <= D && D <= 12019 || 12032 <= D && D <= 12245 || 12272 <= D && D <= 12283 || 12289 <= D && D <= 12350 || 12353 <= D && D <= 12438 || 12441 <= D && D <= 12543 || 12549 <= D && D <= 12589 || 12593 <= D && D <= 12686 || 12688 <= D && D <= 12730 || 12736 <= D && D <= 12771 || 12784 <= D && D <= 12830 || 12832 <= D && D <= 12871 || 12880 <= D && D <= 13054 || 13056 <= D && D <= 19903 || 19968 <= D && D <= 42124 || 42128 <= D && D <= 42182 || 43360 <= D && D <= 43388 || 44032 <= D && D <= 55203 || 55216 <= D && D <= 55238 || 55243 <= D && D <= 55291 || 63744 <= D && D <= 64255 || 65040 <= D && D <= 65049 || 65072 <= D && D <= 65106 || 65108 <= D && D <= 65126 || 65128 <= D && D <= 65131 || 110592 <= D && D <= 110593 || 127488 <= D && D <= 127490 || 127504 <= D && D <= 127546 || 127552 <= D && D <= 127560 || 127568 <= D && D <= 127569 || 131072 <= D && D <= 194367 || 177984 <= D && D <= 196605 || 196608 <= D && D <= 262141 ? "W" : 32 <= D && D <= 126 || 162 <= D && D <= 163 || 165 <= D && D <= 166 || D == 172 || D == 175 || 10214 <= D && D <= 10221 || 10629 <= D && D <= 10630 ? "Na" : D == 161 || D == 164 || 167 <= D && D <= 168 || D == 170 || 173 <= D && D <= 174 || 176 <= D && D <= 180 || 182 <= D && D <= 186 || 188 <= D && D <= 191 || D == 198 || D == 208 || 215 <= D && D <= 216 || 222 <= D && D <= 225 || D == 230 || 232 <= D && D <= 234 || 236 <= D && D <= 237 || D == 240 || 242 <= D && D <= 243 || 247 <= D && D <= 250 || D == 252 || D == 254 || D == 257 || D == 273 || D == 275 || D == 283 || 294 <= D && D <= 295 || D == 299 || 305 <= D && D <= 307 || D == 312 || 319 <= D && D <= 322 || D == 324 || 328 <= D && D <= 331 || D == 333 || 338 <= D && D <= 339 || 358 <= D && D <= 359 || D == 363 || D == 462 || D == 464 || D == 466 || D == 468 || D == 470 || D == 472 || D == 474 || D == 476 || D == 593 || D == 609 || D == 708 || D == 711 || 713 <= D && D <= 715 || D == 717 || D == 720 || 728 <= D && D <= 731 || D == 733 || D == 735 || 768 <= D && D <= 879 || 913 <= D && D <= 929 || 931 <= D && D <= 937 || 945 <= D && D <= 961 || 963 <= D && D <= 969 || D == 1025 || 1040 <= D && D <= 1103 || D == 1105 || D == 8208 || 8211 <= D && D <= 8214 || 8216 <= D && D <= 8217 || 8220 <= D && D <= 8221 || 8224 <= D && D <= 8226 || 8228 <= D && D <= 8231 || D == 8240 || 8242 <= D && D <= 8243 || D == 8245 || D == 8251 || D == 8254 || D == 8308 || D == 8319 || 8321 <= D && D <= 8324 || D == 8364 || D == 8451 || D == 8453 || D == 8457 || D == 8467 || D == 8470 || 8481 <= D && D <= 8482 || D == 8486 || D == 8491 || 8531 <= D && D <= 8532 || 8539 <= D && D <= 8542 || 8544 <= D && D <= 8555 || 8560 <= D && D <= 8569 || D == 8585 || 8592 <= D && D <= 8601 || 8632 <= D && D <= 8633 || D == 8658 || D == 8660 || D == 8679 || D == 8704 || 8706 <= D && D <= 8707 || 8711 <= D && D <= 8712 || D == 8715 || D == 8719 || D == 8721 || D == 8725 || D == 8730 || 8733 <= D && D <= 8736 || D == 8739 || D == 8741 || 8743 <= D && D <= 8748 || D == 8750 || 8756 <= D && D <= 8759 || 8764 <= D && D <= 8765 || D == 8776 || D == 8780 || D == 8786 || 8800 <= D && D <= 8801 || 8804 <= D && D <= 8807 || 8810 <= D && D <= 8811 || 8814 <= D && D <= 8815 || 8834 <= D && D <= 8835 || 8838 <= D && D <= 8839 || D == 8853 || D == 8857 || D == 8869 || D == 8895 || D == 8978 || 9312 <= D && D <= 9449 || 9451 <= D && D <= 9547 || 9552 <= D && D <= 9587 || 9600 <= D && D <= 9615 || 9618 <= D && D <= 9621 || 9632 <= D && D <= 9633 || 9635 <= D && D <= 9641 || 9650 <= D && D <= 9651 || 9654 <= D && D <= 9655 || 9660 <= D && D <= 9661 || 9664 <= D && D <= 9665 || 9670 <= D && D <= 9672 || D == 9675 || 9678 <= D && D <= 9681 || 9698 <= D && D <= 9701 || D == 9711 || 9733 <= D && D <= 9734 || D == 9737 || 9742 <= D && D <= 9743 || 9748 <= D && D <= 9749 || D == 9756 || D == 9758 || D == 9792 || D == 9794 || 9824 <= D && D <= 9825 || 9827 <= D && D <= 9829 || 9831 <= D && D <= 9834 || 9836 <= D && D <= 9837 || D == 9839 || 9886 <= D && D <= 9887 || 9918 <= D && D <= 9919 || 9924 <= D && D <= 9933 || 9935 <= D && D <= 9953 || D == 9955 || 9960 <= D && D <= 9983 || D == 10045 || D == 10071 || 10102 <= D && D <= 10111 || 11093 <= D && D <= 11097 || 12872 <= D && D <= 12879 || 57344 <= D && D <= 63743 || 65024 <= D && D <= 65039 || D == 65533 || 127232 <= D && D <= 127242 || 127248 <= D && D <= 127277 || 127280 <= D && D <= 127337 || 127344 <= D && D <= 127386 || 917760 <= D && D <= 917999 || 983040 <= D && D <= 1048573 || 1048576 <= D && D <= 1114109 ? "A" : "N";
177
+ }, u.characterLength = function(e) {
178
+ var s = this.eastAsianWidth(e);
179
+ return s == "F" || s == "W" || s == "A" ? 2 : 1;
180
+ };
181
+ function F(e) {
182
+ return e.match(/[\uD800-\uDBFF][\uDC00-\uDFFF]|[^\uD800-\uDFFF]/g) || [];
183
+ }
184
+ u.length = function(e) {
185
+ for (var s = F(e), i = 0, D = 0;D < s.length; D++)
186
+ i = i + this.characterLength(s[D]);
187
+ return i;
188
+ }, u.slice = function(e, s, i) {
189
+ textLen = u.length(e), s = s || 0, i = i || 1, s < 0 && (s = textLen + s), i < 0 && (i = textLen + i);
190
+ for (var D = "", C = 0, o = F(e), E = 0;E < o.length; E++) {
191
+ var a = o[E], n = u.length(a);
192
+ if (C >= s - (n == 2 ? 1 : 0))
193
+ if (C + n <= i)
194
+ D += a;
195
+ else
196
+ break;
197
+ C += n;
198
+ }
199
+ return D;
200
+ };
201
+ })(P);
202
+ var X = P.exports;
203
+ var DD = O(X);
204
+ var uD = function() {
205
+ return /\uD83C\uDFF4\uDB40\uDC67\uDB40\uDC62(?:\uDB40\uDC77\uDB40\uDC6C\uDB40\uDC73|\uDB40\uDC73\uDB40\uDC63\uDB40\uDC74|\uDB40\uDC65\uDB40\uDC6E\uDB40\uDC67)\uDB40\uDC7F|(?:\uD83E\uDDD1\uD83C\uDFFF\u200D\u2764\uFE0F\u200D(?:\uD83D\uDC8B\u200D)?\uD83E\uDDD1|\uD83D\uDC69\uD83C\uDFFF\u200D\uD83E\uDD1D\u200D(?:\uD83D[\uDC68\uDC69]))(?:\uD83C[\uDFFB-\uDFFE])|(?:\uD83E\uDDD1\uD83C\uDFFE\u200D\u2764\uFE0F\u200D(?:\uD83D\uDC8B\u200D)?\uD83E\uDDD1|\uD83D\uDC69\uD83C\uDFFE\u200D\uD83E\uDD1D\u200D(?:\uD83D[\uDC68\uDC69]))(?:\uD83C[\uDFFB-\uDFFD\uDFFF])|(?:\uD83E\uDDD1\uD83C\uDFFD\u200D\u2764\uFE0F\u200D(?:\uD83D\uDC8B\u200D)?\uD83E\uDDD1|\uD83D\uDC69\uD83C\uDFFD\u200D\uD83E\uDD1D\u200D(?:\uD83D[\uDC68\uDC69]))(?:\uD83C[\uDFFB\uDFFC\uDFFE\uDFFF])|(?:\uD83E\uDDD1\uD83C\uDFFC\u200D\u2764\uFE0F\u200D(?:\uD83D\uDC8B\u200D)?\uD83E\uDDD1|\uD83D\uDC69\uD83C\uDFFC\u200D\uD83E\uDD1D\u200D(?:\uD83D[\uDC68\uDC69]))(?:\uD83C[\uDFFB\uDFFD-\uDFFF])|(?:\uD83E\uDDD1\uD83C\uDFFB\u200D\u2764\uFE0F\u200D(?:\uD83D\uDC8B\u200D)?\uD83E\uDDD1|\uD83D\uDC69\uD83C\uDFFB\u200D\uD83E\uDD1D\u200D(?:\uD83D[\uDC68\uDC69]))(?:\uD83C[\uDFFC-\uDFFF])|\uD83D\uDC68(?:\uD83C\uDFFB(?:\u200D(?:\u2764\uFE0F\u200D(?:\uD83D\uDC8B\u200D\uD83D\uDC68(?:\uD83C[\uDFFB-\uDFFF])|\uD83D\uDC68(?:\uD83C[\uDFFB-\uDFFF]))|\uD83E\uDD1D\u200D\uD83D\uDC68(?:\uD83C[\uDFFC-\uDFFF])|[\u2695\u2696\u2708]\uFE0F|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD]))?|(?:\uD83C[\uDFFC-\uDFFF])\u200D\u2764\uFE0F\u200D(?:\uD83D\uDC8B\u200D\uD83D\uDC68(?:\uD83C[\uDFFB-\uDFFF])|\uD83D\uDC68(?:\uD83C[\uDFFB-\uDFFF]))|\u200D(?:\u2764\uFE0F\u200D(?:\uD83D\uDC8B\u200D)?\uD83D\uDC68|(?:\uD83D[\uDC68\uDC69])\u200D(?:\uD83D\uDC66\u200D\uD83D\uDC66|\uD83D\uDC67\u200D(?:\uD83D[\uDC66\uDC67]))|\uD83D\uDC66\u200D\uD83D\uDC66|\uD83D\uDC67\u200D(?:\uD83D[\uDC66\uDC67])|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C\uDFFF\u200D(?:\uD83E\uDD1D\u200D\uD83D\uDC68(?:\uD83C[\uDFFB-\uDFFE])|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C\uDFFE\u200D(?:\uD83E\uDD1D\u200D\uD83D\uDC68(?:\uD83C[\uDFFB-\uDFFD\uDFFF])|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C\uDFFD\u200D(?:\uD83E\uDD1D\u200D\uD83D\uDC68(?:\uD83C[\uDFFB\uDFFC\uDFFE\uDFFF])|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C\uDFFC\u200D(?:\uD83E\uDD1D\u200D\uD83D\uDC68(?:\uD83C[\uDFFB\uDFFD-\uDFFF])|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|(?:\uD83C\uDFFF\u200D[\u2695\u2696\u2708]|\uD83C\uDFFE\u200D[\u2695\u2696\u2708]|\uD83C\uDFFD\u200D[\u2695\u2696\u2708]|\uD83C\uDFFC\u200D[\u2695\u2696\u2708]|\u200D[\u2695\u2696\u2708])\uFE0F|\u200D(?:(?:\uD83D[\uDC68\uDC69])\u200D(?:\uD83D[\uDC66\uDC67])|\uD83D[\uDC66\uDC67])|\uD83C\uDFFF|\uD83C\uDFFE|\uD83C\uDFFD|\uD83C\uDFFC)?|(?:\uD83D\uDC69(?:\uD83C\uDFFB\u200D\u2764\uFE0F\u200D(?:\uD83D\uDC8B\u200D(?:\uD83D[\uDC68\uDC69])|\uD83D[\uDC68\uDC69])|(?:\uD83C[\uDFFC-\uDFFF])\u200D\u2764\uFE0F\u200D(?:\uD83D\uDC8B\u200D(?:\uD83D[\uDC68\uDC69])|\uD83D[\uDC68\uDC69]))|\uD83E\uDDD1(?:\uD83C[\uDFFB-\uDFFF])\u200D\uD83E\uDD1D\u200D\uD83E\uDDD1)(?:\uD83C[\uDFFB-\uDFFF])|\uD83D\uDC69\u200D\uD83D\uDC69\u200D(?:\uD83D\uDC66\u200D\uD83D\uDC66|\uD83D\uDC67\u200D(?:\uD83D[\uDC66\uDC67]))|\uD83D\uDC69(?:\u200D(?:\u2764\uFE0F\u200D(?:\uD83D\uDC8B\u200D(?:\uD83D[\uDC68\uDC69])|\uD83D[\uDC68\uDC69])|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C\uDFFF\u200D(?:\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C\uDFFE\u200D(?:\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C\uDFFD\u200D(?:\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C\uDFFC\u200D(?:\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C\uDFFB\u200D(?:\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD]))|\uD83E\uDDD1(?:\u200D(?:\uD83E\uDD1D\u200D\uD83E\uDDD1|\uD83C[\uDF3E\uDF73\uDF7C\uDF84\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C\uDFFF\u200D(?:\uD83C[\uDF3E\uDF73\uDF7C\uDF84\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C\uDFFE\u200D(?:\uD83C[\uDF3E\uDF73\uDF7C\uDF84\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C\uDFFD\u200D(?:\uD83C[\uDF3E\uDF73\uDF7C\uDF84\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C\uDFFC\u200D(?:\uD83C[\uDF3E\uDF73\uDF7C\uDF84\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C\uDFFB\u200D(?:\uD83C[\uDF3E\uDF73\uDF7C\uDF84\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD]))|\uD83D\uDC69\u200D\uD83D\uDC66\u200D\uD83D\uDC66|\uD83D\uDC69\u200D\uD83D\uDC69\u200D(?:\uD83D[\uDC66\uDC67])|\uD83D\uDC69\u200D\uD83D\uDC67\u200D(?:\uD83D[\uDC66\uDC67])|(?:\uD83D\uDC41\uFE0F\u200D\uD83D\uDDE8|\uD83E\uDDD1(?:\uD83C\uDFFF\u200D[\u2695\u2696\u2708]|\uD83C\uDFFE\u200D[\u2695\u2696\u2708]|\uD83C\uDFFD\u200D[\u2695\u2696\u2708]|\uD83C\uDFFC\u200D[\u2695\u2696\u2708]|\uD83C\uDFFB\u200D[\u2695\u2696\u2708]|\u200D[\u2695\u2696\u2708])|\uD83D\uDC69(?:\uD83C\uDFFF\u200D[\u2695\u2696\u2708]|\uD83C\uDFFE\u200D[\u2695\u2696\u2708]|\uD83C\uDFFD\u200D[\u2695\u2696\u2708]|\uD83C\uDFFC\u200D[\u2695\u2696\u2708]|\uD83C\uDFFB\u200D[\u2695\u2696\u2708]|\u200D[\u2695\u2696\u2708])|\uD83D\uDE36\u200D\uD83C\uDF2B|\uD83C\uDFF3\uFE0F\u200D\u26A7|\uD83D\uDC3B\u200D\u2744|(?:(?:\uD83C[\uDFC3\uDFC4\uDFCA]|\uD83D[\uDC6E\uDC70\uDC71\uDC73\uDC77\uDC81\uDC82\uDC86\uDC87\uDE45-\uDE47\uDE4B\uDE4D\uDE4E\uDEA3\uDEB4-\uDEB6]|\uD83E[\uDD26\uDD35\uDD37-\uDD39\uDD3D\uDD3E\uDDB8\uDDB9\uDDCD-\uDDCF\uDDD4\uDDD6-\uDDDD])(?:\uD83C[\uDFFB-\uDFFF])|\uD83D\uDC6F|\uD83E[\uDD3C\uDDDE\uDDDF])\u200D[\u2640\u2642]|(?:\u26F9|\uD83C[\uDFCB\uDFCC]|\uD83D\uDD75)(?:\uFE0F|\uD83C[\uDFFB-\uDFFF])\u200D[\u2640\u2642]|\uD83C\uDFF4\u200D\u2620|(?:\uD83C[\uDFC3\uDFC4\uDFCA]|\uD83D[\uDC6E\uDC70\uDC71\uDC73\uDC77\uDC81\uDC82\uDC86\uDC87\uDE45-\uDE47\uDE4B\uDE4D\uDE4E\uDEA3\uDEB4-\uDEB6]|\uD83E[\uDD26\uDD35\uDD37-\uDD39\uDD3D\uDD3E\uDDB8\uDDB9\uDDCD-\uDDCF\uDDD4\uDDD6-\uDDDD])\u200D[\u2640\u2642]|[\xA9\xAE\u203C\u2049\u2122\u2139\u2194-\u2199\u21A9\u21AA\u2328\u23CF\u23ED-\u23EF\u23F1\u23F2\u23F8-\u23FA\u24C2\u25AA\u25AB\u25B6\u25C0\u25FB\u25FC\u2600-\u2604\u260E\u2611\u2618\u2620\u2622\u2623\u2626\u262A\u262E\u262F\u2638-\u263A\u2640\u2642\u265F\u2660\u2663\u2665\u2666\u2668\u267B\u267E\u2692\u2694-\u2697\u2699\u269B\u269C\u26A0\u26A7\u26B0\u26B1\u26C8\u26CF\u26D1\u26D3\u26E9\u26F0\u26F1\u26F4\u26F7\u26F8\u2702\u2708\u2709\u270F\u2712\u2714\u2716\u271D\u2721\u2733\u2734\u2744\u2747\u2763\u27A1\u2934\u2935\u2B05-\u2B07\u3030\u303D\u3297\u3299]|\uD83C[\uDD70\uDD71\uDD7E\uDD7F\uDE02\uDE37\uDF21\uDF24-\uDF2C\uDF36\uDF7D\uDF96\uDF97\uDF99-\uDF9B\uDF9E\uDF9F\uDFCD\uDFCE\uDFD4-\uDFDF\uDFF5\uDFF7]|\uD83D[\uDC3F\uDCFD\uDD49\uDD4A\uDD6F\uDD70\uDD73\uDD76-\uDD79\uDD87\uDD8A-\uDD8D\uDDA5\uDDA8\uDDB1\uDDB2\uDDBC\uDDC2-\uDDC4\uDDD1-\uDDD3\uDDDC-\uDDDE\uDDE1\uDDE3\uDDE8\uDDEF\uDDF3\uDDFA\uDECB\uDECD-\uDECF\uDEE0-\uDEE5\uDEE9\uDEF0\uDEF3])\uFE0F|\uD83C\uDFF3\uFE0F\u200D\uD83C\uDF08|\uD83D\uDC69\u200D\uD83D\uDC67|\uD83D\uDC69\u200D\uD83D\uDC66|\uD83D\uDE35\u200D\uD83D\uDCAB|\uD83D\uDE2E\u200D\uD83D\uDCA8|\uD83D\uDC15\u200D\uD83E\uDDBA|\uD83E\uDDD1(?:\uD83C\uDFFF|\uD83C\uDFFE|\uD83C\uDFFD|\uD83C\uDFFC|\uD83C\uDFFB)?|\uD83D\uDC69(?:\uD83C\uDFFF|\uD83C\uDFFE|\uD83C\uDFFD|\uD83C\uDFFC|\uD83C\uDFFB)?|\uD83C\uDDFD\uD83C\uDDF0|\uD83C\uDDF6\uD83C\uDDE6|\uD83C\uDDF4\uD83C\uDDF2|\uD83D\uDC08\u200D\u2B1B|\u2764\uFE0F\u200D(?:\uD83D\uDD25|\uD83E\uDE79)|\uD83D\uDC41\uFE0F|\uD83C\uDFF3\uFE0F|\uD83C\uDDFF(?:\uD83C[\uDDE6\uDDF2\uDDFC])|\uD83C\uDDFE(?:\uD83C[\uDDEA\uDDF9])|\uD83C\uDDFC(?:\uD83C[\uDDEB\uDDF8])|\uD83C\uDDFB(?:\uD83C[\uDDE6\uDDE8\uDDEA\uDDEC\uDDEE\uDDF3\uDDFA])|\uD83C\uDDFA(?:\uD83C[\uDDE6\uDDEC\uDDF2\uDDF3\uDDF8\uDDFE\uDDFF])|\uD83C\uDDF9(?:\uD83C[\uDDE6\uDDE8\uDDE9\uDDEB-\uDDED\uDDEF-\uDDF4\uDDF7\uDDF9\uDDFB\uDDFC\uDDFF])|\uD83C\uDDF8(?:\uD83C[\uDDE6-\uDDEA\uDDEC-\uDDF4\uDDF7-\uDDF9\uDDFB\uDDFD-\uDDFF])|\uD83C\uDDF7(?:\uD83C[\uDDEA\uDDF4\uDDF8\uDDFA\uDDFC])|\uD83C\uDDF5(?:\uD83C[\uDDE6\uDDEA-\uDDED\uDDF0-\uDDF3\uDDF7-\uDDF9\uDDFC\uDDFE])|\uD83C\uDDF3(?:\uD83C[\uDDE6\uDDE8\uDDEA-\uDDEC\uDDEE\uDDF1\uDDF4\uDDF5\uDDF7\uDDFA\uDDFF])|\uD83C\uDDF2(?:\uD83C[\uDDE6\uDDE8-\uDDED\uDDF0-\uDDFF])|\uD83C\uDDF1(?:\uD83C[\uDDE6-\uDDE8\uDDEE\uDDF0\uDDF7-\uDDFB\uDDFE])|\uD83C\uDDF0(?:\uD83C[\uDDEA\uDDEC-\uDDEE\uDDF2\uDDF3\uDDF5\uDDF7\uDDFC\uDDFE\uDDFF])|\uD83C\uDDEF(?:\uD83C[\uDDEA\uDDF2\uDDF4\uDDF5])|\uD83C\uDDEE(?:\uD83C[\uDDE8-\uDDEA\uDDF1-\uDDF4\uDDF6-\uDDF9])|\uD83C\uDDED(?:\uD83C[\uDDF0\uDDF2\uDDF3\uDDF7\uDDF9\uDDFA])|\uD83C\uDDEC(?:\uD83C[\uDDE6\uDDE7\uDDE9-\uDDEE\uDDF1-\uDDF3\uDDF5-\uDDFA\uDDFC\uDDFE])|\uD83C\uDDEB(?:\uD83C[\uDDEE-\uDDF0\uDDF2\uDDF4\uDDF7])|\uD83C\uDDEA(?:\uD83C[\uDDE6\uDDE8\uDDEA\uDDEC\uDDED\uDDF7-\uDDFA])|\uD83C\uDDE9(?:\uD83C[\uDDEA\uDDEC\uDDEF\uDDF0\uDDF2\uDDF4\uDDFF])|\uD83C\uDDE8(?:\uD83C[\uDDE6\uDDE8\uDDE9\uDDEB-\uDDEE\uDDF0-\uDDF5\uDDF7\uDDFA-\uDDFF])|\uD83C\uDDE7(?:\uD83C[\uDDE6\uDDE7\uDDE9-\uDDEF\uDDF1-\uDDF4\uDDF6-\uDDF9\uDDFB\uDDFC\uDDFE\uDDFF])|\uD83C\uDDE6(?:\uD83C[\uDDE8-\uDDEC\uDDEE\uDDF1\uDDF2\uDDF4\uDDF6-\uDDFA\uDDFC\uDDFD\uDDFF])|[#\*0-9]\uFE0F\u20E3|\u2764\uFE0F|(?:\uD83C[\uDFC3\uDFC4\uDFCA]|\uD83D[\uDC6E\uDC70\uDC71\uDC73\uDC77\uDC81\uDC82\uDC86\uDC87\uDE45-\uDE47\uDE4B\uDE4D\uDE4E\uDEA3\uDEB4-\uDEB6]|\uD83E[\uDD26\uDD35\uDD37-\uDD39\uDD3D\uDD3E\uDDB8\uDDB9\uDDCD-\uDDCF\uDDD4\uDDD6-\uDDDD])(?:\uD83C[\uDFFB-\uDFFF])|(?:\u26F9|\uD83C[\uDFCB\uDFCC]|\uD83D\uDD75)(?:\uFE0F|\uD83C[\uDFFB-\uDFFF])|\uD83C\uDFF4|(?:[\u270A\u270B]|\uD83C[\uDF85\uDFC2\uDFC7]|\uD83D[\uDC42\uDC43\uDC46-\uDC50\uDC66\uDC67\uDC6B-\uDC6D\uDC72\uDC74-\uDC76\uDC78\uDC7C\uDC83\uDC85\uDC8F\uDC91\uDCAA\uDD7A\uDD95\uDD96\uDE4C\uDE4F\uDEC0\uDECC]|\uD83E[\uDD0C\uDD0F\uDD18-\uDD1C\uDD1E\uDD1F\uDD30-\uDD34\uDD36\uDD77\uDDB5\uDDB6\uDDBB\uDDD2\uDDD3\uDDD5])(?:\uD83C[\uDFFB-\uDFFF])|(?:[\u261D\u270C\u270D]|\uD83D[\uDD74\uDD90])(?:\uFE0F|\uD83C[\uDFFB-\uDFFF])|[\u270A\u270B]|\uD83C[\uDF85\uDFC2\uDFC7]|\uD83D[\uDC08\uDC15\uDC3B\uDC42\uDC43\uDC46-\uDC50\uDC66\uDC67\uDC6B-\uDC6D\uDC72\uDC74-\uDC76\uDC78\uDC7C\uDC83\uDC85\uDC8F\uDC91\uDCAA\uDD7A\uDD95\uDD96\uDE2E\uDE35\uDE36\uDE4C\uDE4F\uDEC0\uDECC]|\uD83E[\uDD0C\uDD0F\uDD18-\uDD1C\uDD1E\uDD1F\uDD30-\uDD34\uDD36\uDD77\uDDB5\uDDB6\uDDBB\uDDD2\uDDD3\uDDD5]|\uD83C[\uDFC3\uDFC4\uDFCA]|\uD83D[\uDC6E\uDC70\uDC71\uDC73\uDC77\uDC81\uDC82\uDC86\uDC87\uDE45-\uDE47\uDE4B\uDE4D\uDE4E\uDEA3\uDEB4-\uDEB6]|\uD83E[\uDD26\uDD35\uDD37-\uDD39\uDD3D\uDD3E\uDDB8\uDDB9\uDDCD-\uDDCF\uDDD4\uDDD6-\uDDDD]|\uD83D\uDC6F|\uD83E[\uDD3C\uDDDE\uDDDF]|[\u231A\u231B\u23E9-\u23EC\u23F0\u23F3\u25FD\u25FE\u2614\u2615\u2648-\u2653\u267F\u2693\u26A1\u26AA\u26AB\u26BD\u26BE\u26C4\u26C5\u26CE\u26D4\u26EA\u26F2\u26F3\u26F5\u26FA\u26FD\u2705\u2728\u274C\u274E\u2753-\u2755\u2757\u2795-\u2797\u27B0\u27BF\u2B1B\u2B1C\u2B50\u2B55]|\uD83C[\uDC04\uDCCF\uDD8E\uDD91-\uDD9A\uDE01\uDE1A\uDE2F\uDE32-\uDE36\uDE38-\uDE3A\uDE50\uDE51\uDF00-\uDF20\uDF2D-\uDF35\uDF37-\uDF7C\uDF7E-\uDF84\uDF86-\uDF93\uDFA0-\uDFC1\uDFC5\uDFC6\uDFC8\uDFC9\uDFCF-\uDFD3\uDFE0-\uDFF0\uDFF8-\uDFFF]|\uD83D[\uDC00-\uDC07\uDC09-\uDC14\uDC16-\uDC3A\uDC3C-\uDC3E\uDC40\uDC44\uDC45\uDC51-\uDC65\uDC6A\uDC79-\uDC7B\uDC7D-\uDC80\uDC84\uDC88-\uDC8E\uDC90\uDC92-\uDCA9\uDCAB-\uDCFC\uDCFF-\uDD3D\uDD4B-\uDD4E\uDD50-\uDD67\uDDA4\uDDFB-\uDE2D\uDE2F-\uDE34\uDE37-\uDE44\uDE48-\uDE4A\uDE80-\uDEA2\uDEA4-\uDEB3\uDEB7-\uDEBF\uDEC1-\uDEC5\uDED0-\uDED2\uDED5-\uDED7\uDEEB\uDEEC\uDEF4-\uDEFC\uDFE0-\uDFEB]|\uD83E[\uDD0D\uDD0E\uDD10-\uDD17\uDD1D\uDD20-\uDD25\uDD27-\uDD2F\uDD3A\uDD3F-\uDD45\uDD47-\uDD76\uDD78\uDD7A-\uDDB4\uDDB7\uDDBA\uDDBC-\uDDCB\uDDD0\uDDE0-\uDDFF\uDE70-\uDE74\uDE78-\uDE7A\uDE80-\uDE86\uDE90-\uDEA8\uDEB0-\uDEB6\uDEC0-\uDEC2\uDED0-\uDED6]|(?:[\u231A\u231B\u23E9-\u23EC\u23F0\u23F3\u25FD\u25FE\u2614\u2615\u2648-\u2653\u267F\u2693\u26A1\u26AA\u26AB\u26BD\u26BE\u26C4\u26C5\u26CE\u26D4\u26EA\u26F2\u26F3\u26F5\u26FA\u26FD\u2705\u270A\u270B\u2728\u274C\u274E\u2753-\u2755\u2757\u2795-\u2797\u27B0\u27BF\u2B1B\u2B1C\u2B50\u2B55]|\uD83C[\uDC04\uDCCF\uDD8E\uDD91-\uDD9A\uDDE6-\uDDFF\uDE01\uDE1A\uDE2F\uDE32-\uDE36\uDE38-\uDE3A\uDE50\uDE51\uDF00-\uDF20\uDF2D-\uDF35\uDF37-\uDF7C\uDF7E-\uDF93\uDFA0-\uDFCA\uDFCF-\uDFD3\uDFE0-\uDFF0\uDFF4\uDFF8-\uDFFF]|\uD83D[\uDC00-\uDC3E\uDC40\uDC42-\uDCFC\uDCFF-\uDD3D\uDD4B-\uDD4E\uDD50-\uDD67\uDD7A\uDD95\uDD96\uDDA4\uDDFB-\uDE4F\uDE80-\uDEC5\uDECC\uDED0-\uDED2\uDED5-\uDED7\uDEEB\uDEEC\uDEF4-\uDEFC\uDFE0-\uDFEB]|\uD83E[\uDD0C-\uDD3A\uDD3C-\uDD45\uDD47-\uDD78\uDD7A-\uDDCB\uDDCD-\uDDFF\uDE70-\uDE74\uDE78-\uDE7A\uDE80-\uDE86\uDE90-\uDEA8\uDEB0-\uDEB6\uDEC0-\uDEC2\uDED0-\uDED6])|(?:[#\*0-9\xA9\xAE\u203C\u2049\u2122\u2139\u2194-\u2199\u21A9\u21AA\u231A\u231B\u2328\u23CF\u23E9-\u23F3\u23F8-\u23FA\u24C2\u25AA\u25AB\u25B6\u25C0\u25FB-\u25FE\u2600-\u2604\u260E\u2611\u2614\u2615\u2618\u261D\u2620\u2622\u2623\u2626\u262A\u262E\u262F\u2638-\u263A\u2640\u2642\u2648-\u2653\u265F\u2660\u2663\u2665\u2666\u2668\u267B\u267E\u267F\u2692-\u2697\u2699\u269B\u269C\u26A0\u26A1\u26A7\u26AA\u26AB\u26B0\u26B1\u26BD\u26BE\u26C4\u26C5\u26C8\u26CE\u26CF\u26D1\u26D3\u26D4\u26E9\u26EA\u26F0-\u26F5\u26F7-\u26FA\u26FD\u2702\u2705\u2708-\u270D\u270F\u2712\u2714\u2716\u271D\u2721\u2728\u2733\u2734\u2744\u2747\u274C\u274E\u2753-\u2755\u2757\u2763\u2764\u2795-\u2797\u27A1\u27B0\u27BF\u2934\u2935\u2B05-\u2B07\u2B1B\u2B1C\u2B50\u2B55\u3030\u303D\u3297\u3299]|\uD83C[\uDC04\uDCCF\uDD70\uDD71\uDD7E\uDD7F\uDD8E\uDD91-\uDD9A\uDDE6-\uDDFF\uDE01\uDE02\uDE1A\uDE2F\uDE32-\uDE3A\uDE50\uDE51\uDF00-\uDF21\uDF24-\uDF93\uDF96\uDF97\uDF99-\uDF9B\uDF9E-\uDFF0\uDFF3-\uDFF5\uDFF7-\uDFFF]|\uD83D[\uDC00-\uDCFD\uDCFF-\uDD3D\uDD49-\uDD4E\uDD50-\uDD67\uDD6F\uDD70\uDD73-\uDD7A\uDD87\uDD8A-\uDD8D\uDD90\uDD95\uDD96\uDDA4\uDDA5\uDDA8\uDDB1\uDDB2\uDDBC\uDDC2-\uDDC4\uDDD1-\uDDD3\uDDDC-\uDDDE\uDDE1\uDDE3\uDDE8\uDDEF\uDDF3\uDDFA-\uDE4F\uDE80-\uDEC5\uDECB-\uDED2\uDED5-\uDED7\uDEE0-\uDEE5\uDEE9\uDEEB\uDEEC\uDEF0\uDEF3-\uDEFC\uDFE0-\uDFEB]|\uD83E[\uDD0C-\uDD3A\uDD3C-\uDD45\uDD47-\uDD78\uDD7A-\uDDCB\uDDCD-\uDDFF\uDE70-\uDE74\uDE78-\uDE7A\uDE80-\uDE86\uDE90-\uDEA8\uDEB0-\uDEB6\uDEC0-\uDEC2\uDED0-\uDED6])\uFE0F|(?:[\u261D\u26F9\u270A-\u270D]|\uD83C[\uDF85\uDFC2-\uDFC4\uDFC7\uDFCA-\uDFCC]|\uD83D[\uDC42\uDC43\uDC46-\uDC50\uDC66-\uDC78\uDC7C\uDC81-\uDC83\uDC85-\uDC87\uDC8F\uDC91\uDCAA\uDD74\uDD75\uDD7A\uDD90\uDD95\uDD96\uDE45-\uDE47\uDE4B-\uDE4F\uDEA3\uDEB4-\uDEB6\uDEC0\uDECC]|\uD83E[\uDD0C\uDD0F\uDD18-\uDD1F\uDD26\uDD30-\uDD39\uDD3C-\uDD3E\uDD77\uDDB5\uDDB6\uDDB8\uDDB9\uDDBB\uDDCD-\uDDCF\uDDD1-\uDDDD])/g;
206
+ };
207
+ var FD = O(uD);
208
+ function A(t, u = {}) {
209
+ if (typeof t != "string" || t.length === 0 || (u = { ambiguousIsNarrow: true, ...u }, t = T(t), t.length === 0))
210
+ return 0;
211
+ t = t.replace(FD(), " ");
212
+ const F = u.ambiguousIsNarrow ? 1 : 2;
213
+ let e = 0;
214
+ for (const s of t) {
215
+ const i = s.codePointAt(0);
216
+ if (i <= 31 || i >= 127 && i <= 159 || i >= 768 && i <= 879)
217
+ continue;
218
+ switch (DD.eastAsianWidth(s)) {
219
+ case "F":
220
+ case "W":
221
+ e += 2;
222
+ break;
223
+ case "A":
224
+ e += F;
225
+ break;
226
+ default:
227
+ e += 1;
228
+ }
229
+ }
230
+ return e;
231
+ }
232
+ var m = 10;
233
+ var L = (t = 0) => (u) => `\x1B[${u + t}m`;
234
+ var N = (t = 0) => (u) => `\x1B[${38 + t};5;${u}m`;
235
+ var I = (t = 0) => (u, F, e) => `\x1B[${38 + t};2;${u};${F};${e}m`;
236
+ var r = { modifier: { reset: [0, 0], bold: [1, 22], dim: [2, 22], italic: [3, 23], underline: [4, 24], overline: [53, 55], inverse: [7, 27], hidden: [8, 28], strikethrough: [9, 29] }, color: { black: [30, 39], red: [31, 39], green: [32, 39], yellow: [33, 39], blue: [34, 39], magenta: [35, 39], cyan: [36, 39], white: [37, 39], blackBright: [90, 39], gray: [90, 39], grey: [90, 39], redBright: [91, 39], greenBright: [92, 39], yellowBright: [93, 39], blueBright: [94, 39], magentaBright: [95, 39], cyanBright: [96, 39], whiteBright: [97, 39] }, bgColor: { bgBlack: [40, 49], bgRed: [41, 49], bgGreen: [42, 49], bgYellow: [43, 49], bgBlue: [44, 49], bgMagenta: [45, 49], bgCyan: [46, 49], bgWhite: [47, 49], bgBlackBright: [100, 49], bgGray: [100, 49], bgGrey: [100, 49], bgRedBright: [101, 49], bgGreenBright: [102, 49], bgYellowBright: [103, 49], bgBlueBright: [104, 49], bgMagentaBright: [105, 49], bgCyanBright: [106, 49], bgWhiteBright: [107, 49] } };
237
+ Object.keys(r.modifier);
238
+ var tD = Object.keys(r.color);
239
+ var eD = Object.keys(r.bgColor);
240
+ [...tD, ...eD];
241
+ function sD() {
242
+ const t = new Map;
243
+ for (const [u, F] of Object.entries(r)) {
244
+ for (const [e, s] of Object.entries(F))
245
+ r[e] = { open: `\x1B[${s[0]}m`, close: `\x1B[${s[1]}m` }, F[e] = r[e], t.set(s[0], s[1]);
246
+ Object.defineProperty(r, u, { value: F, enumerable: false });
247
+ }
248
+ return Object.defineProperty(r, "codes", { value: t, enumerable: false }), r.color.close = "\x1B[39m", r.bgColor.close = "\x1B[49m", r.color.ansi = L(), r.color.ansi256 = N(), r.color.ansi16m = I(), r.bgColor.ansi = L(m), r.bgColor.ansi256 = N(m), r.bgColor.ansi16m = I(m), Object.defineProperties(r, { rgbToAnsi256: { value: (u, F, e) => u === F && F === e ? u < 8 ? 16 : u > 248 ? 231 : Math.round((u - 8) / 247 * 24) + 232 : 16 + 36 * Math.round(u / 255 * 5) + 6 * Math.round(F / 255 * 5) + Math.round(e / 255 * 5), enumerable: false }, hexToRgb: { value: (u) => {
249
+ const F = /[a-f\d]{6}|[a-f\d]{3}/i.exec(u.toString(16));
250
+ if (!F)
251
+ return [0, 0, 0];
252
+ let [e] = F;
253
+ e.length === 3 && (e = [...e].map((i) => i + i).join(""));
254
+ const s = Number.parseInt(e, 16);
255
+ return [s >> 16 & 255, s >> 8 & 255, s & 255];
256
+ }, enumerable: false }, hexToAnsi256: { value: (u) => r.rgbToAnsi256(...r.hexToRgb(u)), enumerable: false }, ansi256ToAnsi: { value: (u) => {
257
+ if (u < 8)
258
+ return 30 + u;
259
+ if (u < 16)
260
+ return 90 + (u - 8);
261
+ let F, e, s;
262
+ if (u >= 232)
263
+ F = ((u - 232) * 10 + 8) / 255, e = F, s = F;
264
+ else {
265
+ u -= 16;
266
+ const C = u % 36;
267
+ F = Math.floor(u / 36) / 5, e = Math.floor(C / 6) / 5, s = C % 6 / 5;
268
+ }
269
+ const i = Math.max(F, e, s) * 2;
270
+ if (i === 0)
271
+ return 30;
272
+ let D = 30 + (Math.round(s) << 2 | Math.round(e) << 1 | Math.round(F));
273
+ return i === 2 && (D += 60), D;
274
+ }, enumerable: false }, rgbToAnsi: { value: (u, F, e) => r.ansi256ToAnsi(r.rgbToAnsi256(u, F, e)), enumerable: false }, hexToAnsi: { value: (u) => r.ansi256ToAnsi(r.hexToAnsi256(u)), enumerable: false } }), r;
275
+ }
276
+ var iD = sD();
277
+ var v = new Set(["\x1B", "›"]);
278
+ var CD = 39;
279
+ var w = "\x07";
280
+ var W = "[";
281
+ var rD = "]";
282
+ var R = "m";
283
+ var y = `${rD}8;;`;
284
+ var V = (t) => `${v.values().next().value}${W}${t}${R}`;
285
+ var z = (t) => `${v.values().next().value}${y}${t}${w}`;
286
+ var ED = (t) => t.split(" ").map((u) => A(u));
287
+ var _ = (t, u, F) => {
288
+ const e = [...u];
289
+ let s = false, i = false, D = A(T(t[t.length - 1]));
290
+ for (const [C, o] of e.entries()) {
291
+ const E = A(o);
292
+ if (D + E <= F ? t[t.length - 1] += o : (t.push(o), D = 0), v.has(o) && (s = true, i = e.slice(C + 1).join("").startsWith(y)), s) {
293
+ i ? o === w && (s = false, i = false) : o === R && (s = false);
294
+ continue;
295
+ }
296
+ D += E, D === F && C < e.length - 1 && (t.push(""), D = 0);
297
+ }
298
+ !D && t[t.length - 1].length > 0 && t.length > 1 && (t[t.length - 2] += t.pop());
299
+ };
300
+ var nD = (t) => {
301
+ const u = t.split(" ");
302
+ let F = u.length;
303
+ for (;F > 0 && !(A(u[F - 1]) > 0); )
304
+ F--;
305
+ return F === u.length ? t : u.slice(0, F).join(" ") + u.slice(F).join("");
306
+ };
307
+ var oD = (t, u, F = {}) => {
308
+ if (F.trim !== false && t.trim() === "")
309
+ return "";
310
+ let e = "", s, i;
311
+ const D = ED(t);
312
+ let C = [""];
313
+ for (const [E, a] of t.split(" ").entries()) {
314
+ F.trim !== false && (C[C.length - 1] = C[C.length - 1].trimStart());
315
+ let n = A(C[C.length - 1]);
316
+ if (E !== 0 && (n >= u && (F.wordWrap === false || F.trim === false) && (C.push(""), n = 0), (n > 0 || F.trim === false) && (C[C.length - 1] += " ", n++)), F.hard && D[E] > u) {
317
+ const B = u - n, p = 1 + Math.floor((D[E] - B - 1) / u);
318
+ Math.floor((D[E] - 1) / u) < p && C.push(""), _(C, a, u);
319
+ continue;
320
+ }
321
+ if (n + D[E] > u && n > 0 && D[E] > 0) {
322
+ if (F.wordWrap === false && n < u) {
323
+ _(C, a, u);
324
+ continue;
325
+ }
326
+ C.push("");
327
+ }
328
+ if (n + D[E] > u && F.wordWrap === false) {
329
+ _(C, a, u);
330
+ continue;
331
+ }
332
+ C[C.length - 1] += a;
333
+ }
334
+ F.trim !== false && (C = C.map((E) => nD(E)));
335
+ const o = [...C.join(`
336
+ `)];
337
+ for (const [E, a] of o.entries()) {
338
+ if (e += a, v.has(a)) {
339
+ const { groups: B } = new RegExp(`(?:\\${W}(?<code>\\d+)m|\\${y}(?<uri>.*)${w})`).exec(o.slice(E).join("")) || { groups: {} };
340
+ if (B.code !== undefined) {
341
+ const p = Number.parseFloat(B.code);
342
+ s = p === CD ? undefined : p;
343
+ } else
344
+ B.uri !== undefined && (i = B.uri.length === 0 ? undefined : B.uri);
345
+ }
346
+ const n = iD.codes.get(Number(s));
347
+ o[E + 1] === `
348
+ ` ? (i && (e += z("")), s && n && (e += V(n))) : a === `
349
+ ` && (s && n && (e += V(s)), i && (e += z(i)));
350
+ }
351
+ return e;
352
+ };
353
+ function G(t, u, F) {
354
+ return String(t).normalize().replace(/\r\n/g, `
355
+ `).split(`
356
+ `).map((e) => oD(e, u, F)).join(`
357
+ `);
358
+ }
359
+ var aD = ["up", "down", "left", "right", "space", "enter", "cancel"];
360
+ var c = { actions: new Set(aD), aliases: new Map([["k", "up"], ["j", "down"], ["h", "left"], ["l", "right"], ["\x03", "cancel"], ["escape", "cancel"]]) };
361
+ function k(t, u) {
362
+ if (typeof t == "string")
363
+ return c.aliases.get(t) === u;
364
+ for (const F of t)
365
+ if (F !== undefined && k(F, u))
366
+ return true;
367
+ return false;
368
+ }
369
+ function lD(t, u) {
370
+ if (t === u)
371
+ return;
372
+ const F = t.split(`
373
+ `), e = u.split(`
374
+ `), s = [];
375
+ for (let i = 0;i < Math.max(F.length, e.length); i++)
376
+ F[i] !== e[i] && s.push(i);
377
+ return s;
378
+ }
379
+ var xD = globalThis.process.platform.startsWith("win");
380
+ var S = Symbol("clack:cancel");
381
+ function BD(t) {
382
+ return t === S;
383
+ }
384
+ function d(t, u) {
385
+ const F = t;
386
+ F.isTTY && F.setRawMode(u);
387
+ }
388
+ function cD({ input: t = $, output: u = j, overwrite: F = true, hideCursor: e = true } = {}) {
389
+ const s = f.createInterface({ input: t, output: u, prompt: "", tabSize: 1 });
390
+ f.emitKeypressEvents(t, s), t.isTTY && t.setRawMode(true);
391
+ const i = (D, { name: C, sequence: o }) => {
392
+ const E = String(D);
393
+ if (k([E, C, o], "cancel")) {
394
+ e && u.write(import_sisteransi.cursor.show), process.exit(0);
395
+ return;
396
+ }
397
+ if (!F)
398
+ return;
399
+ const a = C === "return" ? 0 : -1, n = C === "return" ? -1 : 0;
400
+ f.moveCursor(u, a, n, () => {
401
+ f.clearLine(u, 1, () => {
402
+ t.once("keypress", i);
403
+ });
404
+ });
405
+ };
406
+ return e && u.write(import_sisteransi.cursor.hide), t.once("keypress", i), () => {
407
+ t.off("keypress", i), e && u.write(import_sisteransi.cursor.show), t.isTTY && !xD && t.setRawMode(false), s.terminal = false, s.close();
408
+ };
409
+ }
410
+ var AD = Object.defineProperty;
411
+ var pD = (t, u, F) => (u in t) ? AD(t, u, { enumerable: true, configurable: true, writable: true, value: F }) : t[u] = F;
412
+ var h = (t, u, F) => (pD(t, typeof u != "symbol" ? u + "" : u, F), F);
413
+
414
+ class x {
415
+ constructor(u, F = true) {
416
+ h(this, "input"), h(this, "output"), h(this, "_abortSignal"), h(this, "rl"), h(this, "opts"), h(this, "_render"), h(this, "_track", false), h(this, "_prevFrame", ""), h(this, "_subscribers", new Map), h(this, "_cursor", 0), h(this, "state", "initial"), h(this, "error", ""), h(this, "value");
417
+ const { input: e = $, output: s = j, render: i, signal: D, ...C } = u;
418
+ this.opts = C, this.onKeypress = this.onKeypress.bind(this), this.close = this.close.bind(this), this.render = this.render.bind(this), this._render = i.bind(this), this._track = F, this._abortSignal = D, this.input = e, this.output = s;
419
+ }
420
+ unsubscribe() {
421
+ this._subscribers.clear();
422
+ }
423
+ setSubscriber(u, F) {
424
+ const e = this._subscribers.get(u) ?? [];
425
+ e.push(F), this._subscribers.set(u, e);
426
+ }
427
+ on(u, F) {
428
+ this.setSubscriber(u, { cb: F });
429
+ }
430
+ once(u, F) {
431
+ this.setSubscriber(u, { cb: F, once: true });
432
+ }
433
+ emit(u, ...F) {
434
+ const e = this._subscribers.get(u) ?? [], s = [];
435
+ for (const i of e)
436
+ i.cb(...F), i.once && s.push(() => e.splice(e.indexOf(i), 1));
437
+ for (const i of s)
438
+ i();
439
+ }
440
+ prompt() {
441
+ return new Promise((u, F) => {
442
+ if (this._abortSignal) {
443
+ if (this._abortSignal.aborted)
444
+ return this.state = "cancel", this.close(), u(S);
445
+ this._abortSignal.addEventListener("abort", () => {
446
+ this.state = "cancel", this.close();
447
+ }, { once: true });
448
+ }
449
+ const e = new U(0);
450
+ e._write = (s, i, D) => {
451
+ this._track && (this.value = this.rl?.line.replace(/\t/g, ""), this._cursor = this.rl?.cursor ?? 0, this.emit("value", this.value)), D();
452
+ }, this.input.pipe(e), this.rl = M.createInterface({ input: this.input, output: e, tabSize: 2, prompt: "", escapeCodeTimeout: 50 }), M.emitKeypressEvents(this.input, this.rl), this.rl.prompt(), this.opts.initialValue !== undefined && this._track && this.rl.write(this.opts.initialValue), this.input.on("keypress", this.onKeypress), d(this.input, true), this.output.on("resize", this.render), this.render(), this.once("submit", () => {
453
+ this.output.write(import_sisteransi.cursor.show), this.output.off("resize", this.render), d(this.input, false), u(this.value);
454
+ }), this.once("cancel", () => {
455
+ this.output.write(import_sisteransi.cursor.show), this.output.off("resize", this.render), d(this.input, false), u(S);
456
+ });
457
+ });
458
+ }
459
+ onKeypress(u, F) {
460
+ if (this.state === "error" && (this.state = "active"), F?.name && (!this._track && c.aliases.has(F.name) && this.emit("cursor", c.aliases.get(F.name)), c.actions.has(F.name) && this.emit("cursor", F.name)), u && (u.toLowerCase() === "y" || u.toLowerCase() === "n") && this.emit("confirm", u.toLowerCase() === "y"), u === "\t" && this.opts.placeholder && (this.value || (this.rl?.write(this.opts.placeholder), this.emit("value", this.opts.placeholder))), u && this.emit("key", u.toLowerCase()), F?.name === "return") {
461
+ if (this.opts.validate) {
462
+ const e = this.opts.validate(this.value);
463
+ e && (this.error = e instanceof Error ? e.message : e, this.state = "error", this.rl?.write(this.value));
464
+ }
465
+ this.state !== "error" && (this.state = "submit");
466
+ }
467
+ k([u, F?.name, F?.sequence], "cancel") && (this.state = "cancel"), (this.state === "submit" || this.state === "cancel") && this.emit("finalize"), this.render(), (this.state === "submit" || this.state === "cancel") && this.close();
468
+ }
469
+ close() {
470
+ this.input.unpipe(), this.input.removeListener("keypress", this.onKeypress), this.output.write(`
471
+ `), d(this.input, false), this.rl?.close(), this.rl = undefined, this.emit(`${this.state}`, this.value), this.unsubscribe();
472
+ }
473
+ restoreCursor() {
474
+ const u = G(this._prevFrame, process.stdout.columns, { hard: true }).split(`
475
+ `).length - 1;
476
+ this.output.write(import_sisteransi.cursor.move(-999, u * -1));
477
+ }
478
+ render() {
479
+ const u = G(this._render(this) ?? "", process.stdout.columns, { hard: true });
480
+ if (u !== this._prevFrame) {
481
+ if (this.state === "initial")
482
+ this.output.write(import_sisteransi.cursor.hide);
483
+ else {
484
+ const F = lD(this._prevFrame, u);
485
+ if (this.restoreCursor(), F && F?.length === 1) {
486
+ const e = F[0];
487
+ this.output.write(import_sisteransi.cursor.move(0, e)), this.output.write(import_sisteransi.erase.lines(1));
488
+ const s = u.split(`
489
+ `);
490
+ this.output.write(s[e]), this._prevFrame = u, this.output.write(import_sisteransi.cursor.move(0, s.length - e - 1));
491
+ return;
492
+ }
493
+ if (F && F?.length > 1) {
494
+ const e = F[0];
495
+ this.output.write(import_sisteransi.cursor.move(0, e)), this.output.write(import_sisteransi.erase.down());
496
+ const s = u.split(`
497
+ `).slice(e);
498
+ this.output.write(s.join(`
499
+ `)), this._prevFrame = u;
500
+ return;
501
+ }
502
+ this.output.write(import_sisteransi.erase.down());
503
+ }
504
+ this.output.write(u), this.state === "initial" && (this.state = "active"), this._prevFrame = u;
505
+ }
506
+ }
507
+ }
508
+
509
+ class fD extends x {
510
+ get cursor() {
511
+ return this.value ? 0 : 1;
512
+ }
513
+ get _value() {
514
+ return this.cursor === 0;
515
+ }
516
+ constructor(u) {
517
+ super(u, false), this.value = !!u.initialValue, this.on("value", () => {
518
+ this.value = this._value;
519
+ }), this.on("confirm", (F) => {
520
+ this.output.write(import_sisteransi.cursor.move(0, -1)), this.value = F, this.state = "submit", this.close();
521
+ }), this.on("cursor", () => {
522
+ this.value = !this.value;
523
+ });
524
+ }
525
+ }
526
+ var SD = Object.defineProperty;
527
+ var $D = (t, u, F) => (u in t) ? SD(t, u, { enumerable: true, configurable: true, writable: true, value: F }) : t[u] = F;
528
+ var q = (t, u, F) => ($D(t, typeof u != "symbol" ? u + "" : u, F), F);
529
+
530
+ class jD extends x {
531
+ constructor(u) {
532
+ super(u, false), q(this, "options"), q(this, "cursor", 0), this.options = u.options, this.cursor = this.options.findIndex(({ value: F }) => F === u.initialValue), this.cursor === -1 && (this.cursor = 0), this.changeValue(), this.on("cursor", (F) => {
533
+ switch (F) {
534
+ case "left":
535
+ case "up":
536
+ this.cursor = this.cursor === 0 ? this.options.length - 1 : this.cursor - 1;
537
+ break;
538
+ case "down":
539
+ case "right":
540
+ this.cursor = this.cursor === this.options.length - 1 ? 0 : this.cursor + 1;
541
+ break;
542
+ }
543
+ this.changeValue();
544
+ });
545
+ }
546
+ get _value() {
547
+ return this.options[this.cursor];
548
+ }
549
+ changeValue() {
550
+ this.value = this._value.value;
551
+ }
552
+ }
553
+ class PD extends x {
554
+ get valueWithCursor() {
555
+ if (this.state === "submit")
556
+ return this.value;
557
+ if (this.cursor >= this.value.length)
558
+ return `${this.value}█`;
559
+ const u = this.value.slice(0, this.cursor), [F, ...e] = this.value.slice(this.cursor);
560
+ return `${u}${import_picocolors.default.inverse(F)}${e.join("")}`;
561
+ }
562
+ get cursor() {
563
+ return this._cursor;
564
+ }
565
+ constructor(u) {
566
+ super(u), this.on("finalize", () => {
567
+ this.value || (this.value = u.defaultValue);
568
+ });
569
+ }
570
+ }
571
+
572
+ // ../../node_modules/.bun/@clack+prompts@0.9.1/node_modules/@clack/prompts/dist/index.mjs
573
+ var import_picocolors2 = __toESM(require_picocolors(), 1);
574
+ var import_sisteransi2 = __toESM(require_src(), 1);
575
+ import p from "node:process";
576
+ function X2() {
577
+ return p.platform !== "win32" ? p.env.TERM !== "linux" : !!p.env.CI || !!p.env.WT_SESSION || !!p.env.TERMINUS_SUBLIME || p.env.ConEmuTask === "{cmd::Cmder}" || p.env.TERM_PROGRAM === "Terminus-Sublime" || p.env.TERM_PROGRAM === "vscode" || p.env.TERM === "xterm-256color" || p.env.TERM === "alacritty" || p.env.TERMINAL_EMULATOR === "JetBrains-JediTerm";
578
+ }
579
+ var E = X2();
580
+ var u = (s, n) => E ? s : n;
581
+ var ee = u("◆", "*");
582
+ var A2 = u("■", "x");
583
+ var B = u("▲", "x");
584
+ var S2 = u("◇", "o");
585
+ var te = u("┌", "T");
586
+ var a = u("│", "|");
587
+ var m2 = u("└", "—");
588
+ var j2 = u("●", ">");
589
+ var R2 = u("○", " ");
590
+ var V2 = u("◻", "[•]");
591
+ var M2 = u("◼", "[+]");
592
+ var G2 = u("◻", "[ ]");
593
+ var se = u("▪", "•");
594
+ var N2 = u("─", "-");
595
+ var re = u("╮", "+");
596
+ var ie = u("├", "+");
597
+ var ne = u("╯", "+");
598
+ var ae = u("●", "•");
599
+ var oe = u("◆", "*");
600
+ var ce = u("▲", "!");
601
+ var le = u("■", "x");
602
+ var y2 = (s) => {
603
+ switch (s) {
604
+ case "initial":
605
+ case "active":
606
+ return import_picocolors2.default.cyan(ee);
607
+ case "cancel":
608
+ return import_picocolors2.default.red(A2);
609
+ case "error":
610
+ return import_picocolors2.default.yellow(B);
611
+ case "submit":
612
+ return import_picocolors2.default.green(S2);
613
+ }
614
+ };
615
+ var k2 = (s) => {
616
+ const { cursor: n, options: t, style: i } = s, r2 = s.maxItems ?? Number.POSITIVE_INFINITY, c2 = Math.max(process.stdout.rows - 4, 0), o = Math.min(c2, Math.max(r2, 5));
617
+ let l2 = 0;
618
+ n >= l2 + o - 3 ? l2 = Math.max(Math.min(n - o + 3, t.length - o), 0) : n < l2 + 2 && (l2 = Math.max(n - 2, 0));
619
+ const $2 = o < t.length && l2 > 0, d2 = o < t.length && l2 + o < t.length;
620
+ return t.slice(l2, l2 + o).map((w2, b2, C) => {
621
+ const I2 = b2 === 0 && $2, x2 = b2 === C.length - 1 && d2;
622
+ return I2 || x2 ? import_picocolors2.default.dim("...") : i(w2, b2 + l2 === n);
623
+ });
624
+ };
625
+ var ue = (s) => new PD({ validate: s.validate, placeholder: s.placeholder, defaultValue: s.defaultValue, initialValue: s.initialValue, render() {
626
+ const n = `${import_picocolors2.default.gray(a)}
627
+ ${y2(this.state)} ${s.message}
628
+ `, t = s.placeholder ? import_picocolors2.default.inverse(s.placeholder[0]) + import_picocolors2.default.dim(s.placeholder.slice(1)) : import_picocolors2.default.inverse(import_picocolors2.default.hidden("_")), i = this.value ? this.valueWithCursor : t;
629
+ switch (this.state) {
630
+ case "error":
631
+ return `${n.trim()}
632
+ ${import_picocolors2.default.yellow(a)} ${i}
633
+ ${import_picocolors2.default.yellow(m2)} ${import_picocolors2.default.yellow(this.error)}
634
+ `;
635
+ case "submit":
636
+ return `${n}${import_picocolors2.default.gray(a)} ${import_picocolors2.default.dim(this.value || s.placeholder)}`;
637
+ case "cancel":
638
+ return `${n}${import_picocolors2.default.gray(a)} ${import_picocolors2.default.strikethrough(import_picocolors2.default.dim(this.value ?? ""))}${this.value?.trim() ? `
639
+ ${import_picocolors2.default.gray(a)}` : ""}`;
640
+ default:
641
+ return `${n}${import_picocolors2.default.cyan(a)} ${i}
642
+ ${import_picocolors2.default.cyan(m2)}
643
+ `;
644
+ }
645
+ } }).prompt();
646
+ var me = (s) => {
647
+ const n = s.active ?? "Yes", t = s.inactive ?? "No";
648
+ return new fD({ active: n, inactive: t, initialValue: s.initialValue ?? true, render() {
649
+ const i = `${import_picocolors2.default.gray(a)}
650
+ ${y2(this.state)} ${s.message}
651
+ `, r2 = this.value ? n : t;
652
+ switch (this.state) {
653
+ case "submit":
654
+ return `${i}${import_picocolors2.default.gray(a)} ${import_picocolors2.default.dim(r2)}`;
655
+ case "cancel":
656
+ return `${i}${import_picocolors2.default.gray(a)} ${import_picocolors2.default.strikethrough(import_picocolors2.default.dim(r2))}
657
+ ${import_picocolors2.default.gray(a)}`;
658
+ default:
659
+ return `${i}${import_picocolors2.default.cyan(a)} ${this.value ? `${import_picocolors2.default.green(j2)} ${n}` : `${import_picocolors2.default.dim(R2)} ${import_picocolors2.default.dim(n)}`} ${import_picocolors2.default.dim("/")} ${this.value ? `${import_picocolors2.default.dim(R2)} ${import_picocolors2.default.dim(t)}` : `${import_picocolors2.default.green(j2)} ${t}`}
660
+ ${import_picocolors2.default.cyan(m2)}
661
+ `;
662
+ }
663
+ } }).prompt();
664
+ };
665
+ var de = (s) => {
666
+ const n = (t, i) => {
667
+ const r2 = t.label ?? String(t.value);
668
+ switch (i) {
669
+ case "selected":
670
+ return `${import_picocolors2.default.dim(r2)}`;
671
+ case "active":
672
+ return `${import_picocolors2.default.green(j2)} ${r2} ${t.hint ? import_picocolors2.default.dim(`(${t.hint})`) : ""}`;
673
+ case "cancelled":
674
+ return `${import_picocolors2.default.strikethrough(import_picocolors2.default.dim(r2))}`;
675
+ default:
676
+ return `${import_picocolors2.default.dim(R2)} ${import_picocolors2.default.dim(r2)}`;
677
+ }
678
+ };
679
+ return new jD({ options: s.options, initialValue: s.initialValue, render() {
680
+ const t = `${import_picocolors2.default.gray(a)}
681
+ ${y2(this.state)} ${s.message}
682
+ `;
683
+ switch (this.state) {
684
+ case "submit":
685
+ return `${t}${import_picocolors2.default.gray(a)} ${n(this.options[this.cursor], "selected")}`;
686
+ case "cancel":
687
+ return `${t}${import_picocolors2.default.gray(a)} ${n(this.options[this.cursor], "cancelled")}
688
+ ${import_picocolors2.default.gray(a)}`;
689
+ default:
690
+ return `${t}${import_picocolors2.default.cyan(a)} ${k2({ cursor: this.cursor, options: this.options, maxItems: s.maxItems, style: (i, r2) => n(i, r2 ? "active" : "inactive") }).join(`
691
+ ${import_picocolors2.default.cyan(a)} `)}
692
+ ${import_picocolors2.default.cyan(m2)}
693
+ `;
694
+ }
695
+ } }).prompt();
696
+ };
697
+ var ye = (s = "", n = "") => {
698
+ const t = `
699
+ ${s}
700
+ `.split(`
701
+ `), i = T2(n).length, r2 = Math.max(t.reduce((o, l2) => {
702
+ const $2 = T2(l2);
703
+ return $2.length > o ? $2.length : o;
704
+ }, 0), i) + 2, c2 = t.map((o) => `${import_picocolors2.default.gray(a)} ${import_picocolors2.default.dim(o)}${" ".repeat(r2 - T2(o).length)}${import_picocolors2.default.gray(a)}`).join(`
705
+ `);
706
+ process.stdout.write(`${import_picocolors2.default.gray(a)}
707
+ ${import_picocolors2.default.green(S2)} ${import_picocolors2.default.reset(n)} ${import_picocolors2.default.gray(N2.repeat(Math.max(r2 - i - 1, 1)) + re)}
708
+ ${c2}
709
+ ${import_picocolors2.default.gray(ie + N2.repeat(r2 + 2) + ne)}
710
+ `);
711
+ };
712
+ var ve = (s = "") => {
713
+ process.stdout.write(`${import_picocolors2.default.gray(m2)} ${import_picocolors2.default.red(s)}
714
+
715
+ `);
716
+ };
717
+ var we = (s = "") => {
718
+ process.stdout.write(`${import_picocolors2.default.gray(te)} ${s}
719
+ `);
720
+ };
721
+ var fe = (s = "") => {
722
+ process.stdout.write(`${import_picocolors2.default.gray(a)}
723
+ ${import_picocolors2.default.gray(m2)} ${s}
724
+
725
+ `);
726
+ };
727
+ var L2 = () => {
728
+ const s = E ? ["◒", "◐", "◓", "◑"] : ["•", "o", "O", "0"], n = E ? 80 : 120, t = process.env.CI === "true";
729
+ let i, r2, c2 = false, o = "", l2;
730
+ const $2 = (h2) => {
731
+ const g2 = h2 > 1 ? "Something went wrong" : "Canceled";
732
+ c2 && P2(g2, h2);
733
+ }, d2 = () => $2(2), w2 = () => $2(1), b2 = () => {
734
+ process.on("uncaughtExceptionMonitor", d2), process.on("unhandledRejection", d2), process.on("SIGINT", w2), process.on("SIGTERM", w2), process.on("exit", $2);
735
+ }, C = () => {
736
+ process.removeListener("uncaughtExceptionMonitor", d2), process.removeListener("unhandledRejection", d2), process.removeListener("SIGINT", w2), process.removeListener("SIGTERM", w2), process.removeListener("exit", $2);
737
+ }, I2 = () => {
738
+ if (l2 === undefined)
739
+ return;
740
+ t && process.stdout.write(`
741
+ `);
742
+ const h2 = l2.split(`
743
+ `);
744
+ process.stdout.write(import_sisteransi2.cursor.move(-999, h2.length - 1)), process.stdout.write(import_sisteransi2.erase.down(h2.length));
745
+ }, x2 = (h2) => h2.replace(/\.+$/, ""), O2 = (h2 = "") => {
746
+ c2 = true, i = cD(), o = x2(h2), process.stdout.write(`${import_picocolors2.default.gray(a)}
747
+ `);
748
+ let g2 = 0, f2 = 0;
749
+ b2(), r2 = setInterval(() => {
750
+ if (t && o === l2)
751
+ return;
752
+ I2(), l2 = o;
753
+ const W2 = import_picocolors2.default.magenta(s[g2]), _2 = t ? "..." : ".".repeat(Math.floor(f2)).slice(0, 3);
754
+ process.stdout.write(`${W2} ${o}${_2}`), g2 = g2 + 1 < s.length ? g2 + 1 : 0, f2 = f2 < s.length ? f2 + 0.125 : 0;
755
+ }, n);
756
+ }, P2 = (h2 = "", g2 = 0) => {
757
+ c2 = false, clearInterval(r2), I2();
758
+ const f2 = g2 === 0 ? import_picocolors2.default.green(S2) : g2 === 1 ? import_picocolors2.default.red(A2) : import_picocolors2.default.red(B);
759
+ o = x2(h2 ?? o), process.stdout.write(`${f2} ${o}
760
+ `), C(), i();
761
+ };
762
+ return { start: O2, stop: P2, message: (h2 = "") => {
763
+ o = x2(h2 ?? o);
764
+ } };
765
+ };
766
+ var be = async (s, n) => {
767
+ const t = {}, i = Object.keys(s);
768
+ for (const r2 of i) {
769
+ const c2 = s[r2], o = await c2({ results: t })?.catch((l2) => {
770
+ throw l2;
771
+ });
772
+ if (typeof n?.onCancel == "function" && BD(o)) {
773
+ t[r2] = "canceled", n.onCancel({ results: t });
774
+ continue;
775
+ }
776
+ t[r2] = o;
777
+ }
778
+ return t;
779
+ };
780
+
781
+ // src/index.ts
782
+ var import_picocolors3 = __toESM(require_picocolors(), 1);
783
+ import fs from "node:fs";
784
+ import path from "node:path";
785
+ import { execSync } from "node:child_process";
786
+ import { fileURLToPath } from "node:url";
787
+ var __filename2 = fileURLToPath(import.meta.url);
788
+ var __dirname2 = path.dirname(__filename2);
789
+ async function main() {
790
+ console.log();
791
+ we(import_picocolors3.default.bgMagenta(import_picocolors3.default.white(" create-workerstack ")));
792
+ const argProjectName = process.argv[2];
793
+ const options = await be({
794
+ projectName: () => argProjectName ? Promise.resolve(argProjectName) : ue({
795
+ message: "Project name:",
796
+ placeholder: "my-app",
797
+ validate: (value) => {
798
+ if (!value)
799
+ return "Project name is required";
800
+ if (!/^[a-z0-9-_]+$/i.test(value))
801
+ return "Use letters, numbers, hyphens, and underscores only";
802
+ }
803
+ }),
804
+ description: () => ue({
805
+ message: "Project description:",
806
+ placeholder: "A full-stack Cloudflare Workers app",
807
+ defaultValue: "A full-stack Cloudflare Workers app"
808
+ }),
809
+ packageManager: () => de({
810
+ message: "Package manager:",
811
+ options: [
812
+ { value: "bun", label: "bun", hint: "recommended" },
813
+ { value: "npm", label: "npm" },
814
+ { value: "pnpm", label: "pnpm" }
815
+ ],
816
+ initialValue: "bun"
817
+ }),
818
+ installDeps: () => me({
819
+ message: "Install dependencies?",
820
+ initialValue: true
821
+ }),
822
+ initGit: () => me({
823
+ message: "Initialize git repository?",
824
+ initialValue: true
825
+ })
826
+ }, {
827
+ onCancel: () => {
828
+ ve("Operation cancelled.");
829
+ process.exit(0);
830
+ }
831
+ });
832
+ const projectName = options.projectName;
833
+ const description = options.description;
834
+ const packageManager = options.packageManager;
835
+ const installDeps = options.installDeps;
836
+ const initGit = options.initGit;
837
+ const targetDir = path.resolve(process.cwd(), projectName);
838
+ if (fs.existsSync(targetDir)) {
839
+ const files = fs.readdirSync(targetDir);
840
+ if (files.length > 0) {
841
+ const overwrite = await me({
842
+ message: `Directory "${projectName}" is not empty. Continue anyway?`,
843
+ initialValue: false
844
+ });
845
+ if (!overwrite || BD(overwrite)) {
846
+ ve("Operation cancelled.");
847
+ process.exit(0);
848
+ }
849
+ }
850
+ }
851
+ const s = L2();
852
+ s.start("Copying template files...");
853
+ const templateDir = path.resolve(__dirname2, "..", "template");
854
+ copyDir(templateDir, targetDir);
855
+ s.stop("Template files copied.");
856
+ s.start("Configuring project...");
857
+ const filesToProcess = [
858
+ "package.json",
859
+ "wrangler.jsonc",
860
+ path.join("src", "client.tsx")
861
+ ];
862
+ for (const file of filesToProcess) {
863
+ const filePath = path.join(targetDir, file);
864
+ if (fs.existsSync(filePath)) {
865
+ let content = fs.readFileSync(filePath, "utf-8");
866
+ content = content.replaceAll("{{projectName}}", projectName);
867
+ content = content.replaceAll("{{description}}", description);
868
+ fs.writeFileSync(filePath, content);
869
+ }
870
+ }
871
+ s.stop("Project configured.");
872
+ if (installDeps) {
873
+ s.start(`Installing dependencies with ${packageManager}...`);
874
+ try {
875
+ execSync(`${packageManager} install`, {
876
+ cwd: targetDir,
877
+ stdio: "ignore"
878
+ });
879
+ s.stop("Dependencies installed.");
880
+ } catch {
881
+ s.stop(import_picocolors3.default.yellow("Failed to install dependencies. Run install manually."));
882
+ }
883
+ }
884
+ if (initGit) {
885
+ s.start("Initializing git repository...");
886
+ try {
887
+ execSync("git init", { cwd: targetDir, stdio: "ignore" });
888
+ s.stop("Git repository initialized.");
889
+ } catch {
890
+ s.stop(import_picocolors3.default.yellow("Failed to initialize git. Run git init manually."));
891
+ }
892
+ }
893
+ const pmRun = packageManager === "npm" ? "npm run" : packageManager;
894
+ ye([
895
+ `cd ${projectName}`,
896
+ !installDeps ? `${packageManager} install` : "",
897
+ "cp .env.example .env",
898
+ `${pmRun} dev`
899
+ ].filter(Boolean).join(`
900
+ `), "Next steps:");
901
+ fe(import_picocolors3.default.green("Done! Happy hacking."));
902
+ }
903
+ function copyDir(src, dest) {
904
+ fs.mkdirSync(dest, { recursive: true });
905
+ const entries = fs.readdirSync(src, { withFileTypes: true });
906
+ for (const entry of entries) {
907
+ const srcPath = path.join(src, entry.name);
908
+ const destPath = path.join(dest, entry.name);
909
+ if (entry.name === "node_modules" || entry.name === ".git" || entry.name === "bun.lock")
910
+ continue;
911
+ if (entry.isDirectory()) {
912
+ copyDir(srcPath, destPath);
913
+ } else {
914
+ fs.copyFileSync(srcPath, destPath);
915
+ }
916
+ }
917
+ }
918
+ main().catch(console.error);