├── .eslintrc.json ├── .gitignore ├── .prettierrc.json ├── CHANGELOG.md ├── LICENSE ├── README.md ├── assets ├── avatar.png ├── cover.png └── wechat.png ├── metadata ├── wechat-1.png ├── wechat-2.png ├── wechat-3.png └── wechat-4.png ├── package-lock.json ├── package.json ├── src ├── components │ └── searchListltem.tsx ├── hooks │ └── useSearch.ts ├── index.tsx ├── manageTweak.tsx ├── services │ ├── contactLoader.ts │ ├── contactService.ts │ ├── storageService.ts │ └── wechatService.ts ├── tools │ ├── generateMessageForm.tsx │ └── wechatAI.tsx ├── types │ └── index.ts └── utils │ ├── environmentDetector.ts │ └── wechatManager.ts └── tsconfig.json /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "root": true, 3 | "extends": [ 4 | "@raycast" 5 | ], 6 | "rules": { 7 | "@raycast/prefer-title-case": "off" 8 | // ...其他规则 9 | } 10 | } -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # See https://help.github.com/articles/ignoring-files/ for more about ignoring files. 2 | 3 | # dependencies 4 | /node_modules 5 | 6 | # Raycast specific files 7 | raycast-env.d.ts 8 | .raycast-swift-build 9 | .swiftpm 10 | compiled_raycast_swift 11 | 12 | # misc 13 | .DS_Store 14 | -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "printWidth": 120, 3 | "singleQuote": false 4 | } -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # WeChat Changelog 2 | 3 | ## [New Feature] - {PR_MERGE_DATE} 4 | 5 | - Add Raycast AI 6 | 7 | ## [New Feature] - 2025-04-04 8 | 9 | - Manage WeChatTweak directly from Raycast 10 | - Rerited the logic & code structure of Environment Test 11 | 12 | ## [New Feature] - 2025-04-03 13 | 14 | - Added fuzzy search contacts 15 | - pinned contacts 16 | - recent contacts 17 | - default avatar 18 | - optimized code structure and performance and much more.. 19 | - Manage WeChatTweak directly from Raycast 20 | 21 | 22 | ## [Maintenance] - 2025-03-20 23 | 24 | - Update project files 25 | - Use Raycast recommended configurations 26 | - Cleanup unused dependencies 27 | - Bump all dependencies to the latest 28 | 29 | ## [Copy url action] - 2025-03-15 30 | 31 | - Add action to copy quick access url for reuse 32 | - Update logic to launch WeChat 33 | 34 | ## [Initial Version] - 2022-09-19 35 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2023 Raffe Yang 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # WeChat 2 | 3 | A [Raycast](https://www.raycast.com) extension for WeChat to quickly search your contacts and chat. 4 | 5 |  6 |  7 |  8 |  9 |  10 | 11 | ## Requirements 12 | 13 | 1. Install [WeChat for Mac](https://www.wechat.com) 14 | 2. Install [WeChatTweak-macOS](https://github.com/Sunnyyoung/WeChatTweak-macOS) 15 | 16 | ## Features 17 | 18 | - [x] Search Contact / 搜索微信通讯录好友 19 | - [x] Open Contact / 打开微信好友 20 | - [x] List WeChat ID / 显示好友微信ID 21 | - [x] Display Avatar / 显示微信头像 22 | - [x] Pinned Contacts / 置顶好友 23 | - [x] Recent Contacts / 最近联系人 24 | - [x] Support fuzzy Query / 微信通讯录模糊查询 25 | - [x] Manage WeChatTweak / 管理WeChatTweak 26 | - [x] Generate AI Message / 生成AI消息 27 | - [x] Add Raycast AI @wechat / 添加Raycast AI @wechat 28 | 29 | ## Shortcuts 30 | `Enter` Open WeChat Contact / 打开微信好友 31 | 32 | `Command + c`Copy WeChat Contact ID / 复制微信好友ID 33 | 34 | `Command + Shift + p` Pin WeChat Contact / 置顶好友 35 | 36 | `Command + Shift + x` Clear Search History / 清除好友搜索记录 37 | 38 | `Command + Shift + a` Generate AI Message / 生成AI消息 39 | 40 | ## How to Use 41 | 42 | - Raycast Store 43 | 44 |
47 | 48 | - Manual Install 49 | 50 | `npm install && npm run dev` 51 | 52 | ## Note 53 | ### Multi-Language Support 54 | 55 | **English**: 56 | While it's technically possible to add Simplified Chinese support to this extension, since the Raycast platform currently only supports English, we've decided to maintain English-only to avoid a disjointed user experience. When Raycast adds multi-language support in the future, we will promptly add corresponding language support to our extension. 57 | 58 | **中文**: 59 | 虽然技术上可以为此扩展添加简体中文支持,但由于 Raycast 平台目前仅支持英文界面,为避免用户体验割裂,我们暂时保持扩展与平台一致使用英文。当 Raycast 未来支持多语言时,我们将及时跟进添加相应语言支持。 60 | 61 | ### WeChat Version 62 | 该插件当前支持微信4.0以下版本,微信4.0以上版本[参考这里](https://github.com/sunnyyoung/WeChatTweak-macOS/issues/832) 63 | 64 | This extension currently supports WeChat versions below 4.0, WeChat versions above 4.0 [refer here](https://github.com/sunnyyoung/WeChatTweak-macOS/issues/832) 65 | 66 | ## License 67 | 68 | [MIT](LICENSE) 69 | -------------------------------------------------------------------------------- /assets/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaffeYang/wechat/2c262fadaaee9ee1e054a1c9a06c3cedd35052a6/assets/avatar.png -------------------------------------------------------------------------------- /assets/cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaffeYang/wechat/2c262fadaaee9ee1e054a1c9a06c3cedd35052a6/assets/cover.png -------------------------------------------------------------------------------- /assets/wechat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaffeYang/wechat/2c262fadaaee9ee1e054a1c9a06c3cedd35052a6/assets/wechat.png -------------------------------------------------------------------------------- /metadata/wechat-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaffeYang/wechat/2c262fadaaee9ee1e054a1c9a06c3cedd35052a6/metadata/wechat-1.png -------------------------------------------------------------------------------- /metadata/wechat-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaffeYang/wechat/2c262fadaaee9ee1e054a1c9a06c3cedd35052a6/metadata/wechat-2.png -------------------------------------------------------------------------------- /metadata/wechat-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaffeYang/wechat/2c262fadaaee9ee1e054a1c9a06c3cedd35052a6/metadata/wechat-3.png -------------------------------------------------------------------------------- /metadata/wechat-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaffeYang/wechat/2c262fadaaee9ee1e054a1c9a06c3cedd35052a6/metadata/wechat-4.png -------------------------------------------------------------------------------- /package-lock.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "wechat", 3 | "lockfileVersion": 3, 4 | "requires": true, 5 | "packages": { 6 | "": { 7 | "name": "wechat", 8 | "license": "MIT", 9 | "dependencies": { 10 | "@raycast/api": "^1.93.2", 11 | "@raycast/utils": "^1.19.1", 12 | "@types/react": "^19.1.0", 13 | "node-fetch": "^3.3.2", 14 | "text-search-engine": "^1.4.4" 15 | }, 16 | "devDependencies": { 17 | "@raycast/eslint-config": "^1.0.11", 18 | "eslint": "^8.57.1", 19 | "prettier": "^3.5.3", 20 | "typescript": "^5.8.2" 21 | } 22 | }, 23 | "node_modules/@esbuild/darwin-x64": { 24 | "version": "0.25.1", 25 | "cpu": [ 26 | "x64" 27 | ], 28 | "license": "MIT", 29 | "optional": true, 30 | "os": [ 31 | "darwin" 32 | ], 33 | "engines": { 34 | "node": ">=18" 35 | } 36 | }, 37 | "node_modules/@eslint-community/eslint-utils": { 38 | "version": "4.5.1", 39 | "dev": true, 40 | "license": "MIT", 41 | "dependencies": { 42 | "eslint-visitor-keys": "^3.4.3" 43 | }, 44 | "engines": { 45 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 46 | }, 47 | "funding": { 48 | "url": "https://opencollective.com/eslint" 49 | }, 50 | "peerDependencies": { 51 | "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0" 52 | } 53 | }, 54 | "node_modules/@eslint-community/regexpp": { 55 | "version": "4.12.1", 56 | "dev": true, 57 | "license": "MIT", 58 | "engines": { 59 | "node": "^12.0.0 || ^14.0.0 || >=16.0.0" 60 | } 61 | }, 62 | "node_modules/@eslint/eslintrc": { 63 | "version": "2.1.4", 64 | "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.1.4.tgz", 65 | "integrity": "sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==", 66 | "dev": true, 67 | "license": "MIT", 68 | "dependencies": { 69 | "ajv": "^6.12.4", 70 | "debug": "^4.3.2", 71 | "espree": "^9.6.0", 72 | "globals": "^13.19.0", 73 | "ignore": "^5.2.0", 74 | "import-fresh": "^3.2.1", 75 | "js-yaml": "^4.1.0", 76 | "minimatch": "^3.1.2", 77 | "strip-json-comments": "^3.1.1" 78 | }, 79 | "engines": { 80 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 81 | }, 82 | "funding": { 83 | "url": "https://opencollective.com/eslint" 84 | } 85 | }, 86 | "node_modules/@eslint/js": { 87 | "version": "8.57.1", 88 | "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.57.1.tgz", 89 | "integrity": "sha512-d9zaMRSTIKDLhctzH12MtXvJKSSUhaHcjV+2Z+GK+EEY7XKpP5yR4x+N3TAcHTcu963nIr+TMcCb4DBCYX1z6Q==", 90 | "dev": true, 91 | "license": "MIT", 92 | "engines": { 93 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 94 | } 95 | }, 96 | "node_modules/@humanwhocodes/config-array": { 97 | "version": "0.13.0", 98 | "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.13.0.tgz", 99 | "integrity": "sha512-DZLEEqFWQFiyK6h5YIeynKx7JlvCYWL0cImfSRXZ9l4Sg2efkFGTuFf6vzXjK1cq6IYkU+Eg/JizXw+TD2vRNw==", 100 | "deprecated": "Use @eslint/config-array instead", 101 | "dev": true, 102 | "license": "Apache-2.0", 103 | "dependencies": { 104 | "@humanwhocodes/object-schema": "^2.0.3", 105 | "debug": "^4.3.1", 106 | "minimatch": "^3.0.5" 107 | }, 108 | "engines": { 109 | "node": ">=10.10.0" 110 | } 111 | }, 112 | "node_modules/@humanwhocodes/module-importer": { 113 | "version": "1.0.1", 114 | "dev": true, 115 | "license": "Apache-2.0", 116 | "engines": { 117 | "node": ">=12.22" 118 | }, 119 | "funding": { 120 | "type": "github", 121 | "url": "https://github.com/sponsors/nzakas" 122 | } 123 | }, 124 | "node_modules/@humanwhocodes/object-schema": { 125 | "version": "2.0.3", 126 | "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-2.0.3.tgz", 127 | "integrity": "sha512-93zYdMES/c1D69yZiKDBj0V24vqNzB/koF26KPaagAfd3P/4gUlh3Dys5ogAK+Exi9QyzlD8x/08Zt7wIKcDcA==", 128 | "deprecated": "Use @eslint/object-schema instead", 129 | "dev": true, 130 | "license": "BSD-3-Clause" 131 | }, 132 | "node_modules/@inquirer/checkbox": { 133 | "version": "4.1.3", 134 | "license": "MIT", 135 | "dependencies": { 136 | "@inquirer/core": "^10.1.8", 137 | "@inquirer/figures": "^1.0.11", 138 | "@inquirer/type": "^3.0.5", 139 | "ansi-escapes": "^4.3.2", 140 | "yoctocolors-cjs": "^2.1.2" 141 | }, 142 | "engines": { 143 | "node": ">=18" 144 | }, 145 | "peerDependencies": { 146 | "@types/node": ">=18" 147 | }, 148 | "peerDependenciesMeta": { 149 | "@types/node": { 150 | "optional": true 151 | } 152 | } 153 | }, 154 | "node_modules/@inquirer/confirm": { 155 | "version": "5.1.7", 156 | "license": "MIT", 157 | "dependencies": { 158 | "@inquirer/core": "^10.1.8", 159 | "@inquirer/type": "^3.0.5" 160 | }, 161 | "engines": { 162 | "node": ">=18" 163 | }, 164 | "peerDependencies": { 165 | "@types/node": ">=18" 166 | }, 167 | "peerDependenciesMeta": { 168 | "@types/node": { 169 | "optional": true 170 | } 171 | } 172 | }, 173 | "node_modules/@inquirer/core": { 174 | "version": "10.1.8", 175 | "license": "MIT", 176 | "dependencies": { 177 | "@inquirer/figures": "^1.0.11", 178 | "@inquirer/type": "^3.0.5", 179 | "ansi-escapes": "^4.3.2", 180 | "cli-width": "^4.1.0", 181 | "mute-stream": "^2.0.0", 182 | "signal-exit": "^4.1.0", 183 | "wrap-ansi": "^6.2.0", 184 | "yoctocolors-cjs": "^2.1.2" 185 | }, 186 | "engines": { 187 | "node": ">=18" 188 | }, 189 | "peerDependencies": { 190 | "@types/node": ">=18" 191 | }, 192 | "peerDependenciesMeta": { 193 | "@types/node": { 194 | "optional": true 195 | } 196 | } 197 | }, 198 | "node_modules/@inquirer/core/node_modules/wrap-ansi": { 199 | "version": "6.2.0", 200 | "license": "MIT", 201 | "dependencies": { 202 | "ansi-styles": "^4.0.0", 203 | "string-width": "^4.1.0", 204 | "strip-ansi": "^6.0.0" 205 | }, 206 | "engines": { 207 | "node": ">=8" 208 | } 209 | }, 210 | "node_modules/@inquirer/editor": { 211 | "version": "4.2.8", 212 | "license": "MIT", 213 | "dependencies": { 214 | "@inquirer/core": "^10.1.8", 215 | "@inquirer/type": "^3.0.5", 216 | "external-editor": "^3.1.0" 217 | }, 218 | "engines": { 219 | "node": ">=18" 220 | }, 221 | "peerDependencies": { 222 | "@types/node": ">=18" 223 | }, 224 | "peerDependenciesMeta": { 225 | "@types/node": { 226 | "optional": true 227 | } 228 | } 229 | }, 230 | "node_modules/@inquirer/expand": { 231 | "version": "4.0.10", 232 | "license": "MIT", 233 | "dependencies": { 234 | "@inquirer/core": "^10.1.8", 235 | "@inquirer/type": "^3.0.5", 236 | "yoctocolors-cjs": "^2.1.2" 237 | }, 238 | "engines": { 239 | "node": ">=18" 240 | }, 241 | "peerDependencies": { 242 | "@types/node": ">=18" 243 | }, 244 | "peerDependenciesMeta": { 245 | "@types/node": { 246 | "optional": true 247 | } 248 | } 249 | }, 250 | "node_modules/@inquirer/figures": { 251 | "version": "1.0.11", 252 | "license": "MIT", 253 | "engines": { 254 | "node": ">=18" 255 | } 256 | }, 257 | "node_modules/@inquirer/input": { 258 | "version": "4.1.7", 259 | "license": "MIT", 260 | "dependencies": { 261 | "@inquirer/core": "^10.1.8", 262 | "@inquirer/type": "^3.0.5" 263 | }, 264 | "engines": { 265 | "node": ">=18" 266 | }, 267 | "peerDependencies": { 268 | "@types/node": ">=18" 269 | }, 270 | "peerDependenciesMeta": { 271 | "@types/node": { 272 | "optional": true 273 | } 274 | } 275 | }, 276 | "node_modules/@inquirer/number": { 277 | "version": "3.0.10", 278 | "license": "MIT", 279 | "dependencies": { 280 | "@inquirer/core": "^10.1.8", 281 | "@inquirer/type": "^3.0.5" 282 | }, 283 | "engines": { 284 | "node": ">=18" 285 | }, 286 | "peerDependencies": { 287 | "@types/node": ">=18" 288 | }, 289 | "peerDependenciesMeta": { 290 | "@types/node": { 291 | "optional": true 292 | } 293 | } 294 | }, 295 | "node_modules/@inquirer/password": { 296 | "version": "4.0.10", 297 | "license": "MIT", 298 | "dependencies": { 299 | "@inquirer/core": "^10.1.8", 300 | "@inquirer/type": "^3.0.5", 301 | "ansi-escapes": "^4.3.2" 302 | }, 303 | "engines": { 304 | "node": ">=18" 305 | }, 306 | "peerDependencies": { 307 | "@types/node": ">=18" 308 | }, 309 | "peerDependenciesMeta": { 310 | "@types/node": { 311 | "optional": true 312 | } 313 | } 314 | }, 315 | "node_modules/@inquirer/prompts": { 316 | "version": "7.3.3", 317 | "license": "MIT", 318 | "dependencies": { 319 | "@inquirer/checkbox": "^4.1.3", 320 | "@inquirer/confirm": "^5.1.7", 321 | "@inquirer/editor": "^4.2.8", 322 | "@inquirer/expand": "^4.0.10", 323 | "@inquirer/input": "^4.1.7", 324 | "@inquirer/number": "^3.0.10", 325 | "@inquirer/password": "^4.0.10", 326 | "@inquirer/rawlist": "^4.0.10", 327 | "@inquirer/search": "^3.0.10", 328 | "@inquirer/select": "^4.0.10" 329 | }, 330 | "engines": { 331 | "node": ">=18" 332 | }, 333 | "peerDependencies": { 334 | "@types/node": ">=18" 335 | }, 336 | "peerDependenciesMeta": { 337 | "@types/node": { 338 | "optional": true 339 | } 340 | } 341 | }, 342 | "node_modules/@inquirer/rawlist": { 343 | "version": "4.0.10", 344 | "license": "MIT", 345 | "dependencies": { 346 | "@inquirer/core": "^10.1.8", 347 | "@inquirer/type": "^3.0.5", 348 | "yoctocolors-cjs": "^2.1.2" 349 | }, 350 | "engines": { 351 | "node": ">=18" 352 | }, 353 | "peerDependencies": { 354 | "@types/node": ">=18" 355 | }, 356 | "peerDependenciesMeta": { 357 | "@types/node": { 358 | "optional": true 359 | } 360 | } 361 | }, 362 | "node_modules/@inquirer/search": { 363 | "version": "3.0.10", 364 | "license": "MIT", 365 | "dependencies": { 366 | "@inquirer/core": "^10.1.8", 367 | "@inquirer/figures": "^1.0.11", 368 | "@inquirer/type": "^3.0.5", 369 | "yoctocolors-cjs": "^2.1.2" 370 | }, 371 | "engines": { 372 | "node": ">=18" 373 | }, 374 | "peerDependencies": { 375 | "@types/node": ">=18" 376 | }, 377 | "peerDependenciesMeta": { 378 | "@types/node": { 379 | "optional": true 380 | } 381 | } 382 | }, 383 | "node_modules/@inquirer/select": { 384 | "version": "4.0.10", 385 | "license": "MIT", 386 | "dependencies": { 387 | "@inquirer/core": "^10.1.8", 388 | "@inquirer/figures": "^1.0.11", 389 | "@inquirer/type": "^3.0.5", 390 | "ansi-escapes": "^4.3.2", 391 | "yoctocolors-cjs": "^2.1.2" 392 | }, 393 | "engines": { 394 | "node": ">=18" 395 | }, 396 | "peerDependencies": { 397 | "@types/node": ">=18" 398 | }, 399 | "peerDependenciesMeta": { 400 | "@types/node": { 401 | "optional": true 402 | } 403 | } 404 | }, 405 | "node_modules/@inquirer/type": { 406 | "version": "3.0.5", 407 | "license": "MIT", 408 | "engines": { 409 | "node": ">=18" 410 | }, 411 | "peerDependencies": { 412 | "@types/node": ">=18" 413 | }, 414 | "peerDependenciesMeta": { 415 | "@types/node": { 416 | "optional": true 417 | } 418 | } 419 | }, 420 | "node_modules/@nodelib/fs.scandir": { 421 | "version": "2.1.5", 422 | "license": "MIT", 423 | "dependencies": { 424 | "@nodelib/fs.stat": "2.0.5", 425 | "run-parallel": "^1.1.9" 426 | }, 427 | "engines": { 428 | "node": ">= 8" 429 | } 430 | }, 431 | "node_modules/@nodelib/fs.stat": { 432 | "version": "2.0.5", 433 | "license": "MIT", 434 | "engines": { 435 | "node": ">= 8" 436 | } 437 | }, 438 | "node_modules/@nodelib/fs.walk": { 439 | "version": "1.2.8", 440 | "license": "MIT", 441 | "dependencies": { 442 | "@nodelib/fs.scandir": "2.1.5", 443 | "fastq": "^1.6.0" 444 | }, 445 | "engines": { 446 | "node": ">= 8" 447 | } 448 | }, 449 | "node_modules/@oclif/core": { 450 | "version": "4.2.9", 451 | "license": "MIT", 452 | "dependencies": { 453 | "ansi-escapes": "^4.3.2", 454 | "ansis": "^3.17.0", 455 | "clean-stack": "^3.0.1", 456 | "cli-spinners": "^2.9.2", 457 | "debug": "^4.4.0", 458 | "ejs": "^3.1.10", 459 | "get-package-type": "^0.1.0", 460 | "globby": "^11.1.0", 461 | "indent-string": "^4.0.0", 462 | "is-wsl": "^2.2.0", 463 | "lilconfig": "^3.1.3", 464 | "minimatch": "^9.0.5", 465 | "semver": "^7.6.3", 466 | "string-width": "^4.2.3", 467 | "supports-color": "^8", 468 | "widest-line": "^3.1.0", 469 | "wordwrap": "^1.0.0", 470 | "wrap-ansi": "^7.0.0" 471 | }, 472 | "engines": { 473 | "node": ">=18.0.0" 474 | } 475 | }, 476 | "node_modules/@oclif/core/node_modules/brace-expansion": { 477 | "version": "2.0.1", 478 | "license": "MIT", 479 | "dependencies": { 480 | "balanced-match": "^1.0.0" 481 | } 482 | }, 483 | "node_modules/@oclif/core/node_modules/minimatch": { 484 | "version": "9.0.5", 485 | "license": "ISC", 486 | "dependencies": { 487 | "brace-expansion": "^2.0.1" 488 | }, 489 | "engines": { 490 | "node": ">=16 || 14 >=14.17" 491 | }, 492 | "funding": { 493 | "url": "https://github.com/sponsors/isaacs" 494 | } 495 | }, 496 | "node_modules/@oclif/core/node_modules/supports-color": { 497 | "version": "8.1.1", 498 | "license": "MIT", 499 | "dependencies": { 500 | "has-flag": "^4.0.0" 501 | }, 502 | "engines": { 503 | "node": ">=10" 504 | }, 505 | "funding": { 506 | "url": "https://github.com/chalk/supports-color?sponsor=1" 507 | } 508 | }, 509 | "node_modules/@oclif/plugin-autocomplete": { 510 | "version": "3.2.25", 511 | "license": "MIT", 512 | "dependencies": { 513 | "@oclif/core": "^4", 514 | "ansis": "^3.16.0", 515 | "debug": "^4.4.0", 516 | "ejs": "^3.1.10" 517 | }, 518 | "engines": { 519 | "node": ">=18.0.0" 520 | } 521 | }, 522 | "node_modules/@oclif/plugin-help": { 523 | "version": "6.2.26", 524 | "license": "MIT", 525 | "dependencies": { 526 | "@oclif/core": "^4" 527 | }, 528 | "engines": { 529 | "node": ">=18.0.0" 530 | } 531 | }, 532 | "node_modules/@oclif/plugin-not-found": { 533 | "version": "3.2.45", 534 | "license": "MIT", 535 | "dependencies": { 536 | "@inquirer/prompts": "^7.3.2", 537 | "@oclif/core": "^4", 538 | "ansis": "^3.17.0", 539 | "fast-levenshtein": "^3.0.0" 540 | }, 541 | "engines": { 542 | "node": ">=18.0.0" 543 | } 544 | }, 545 | "node_modules/@oclif/plugin-not-found/node_modules/fast-levenshtein": { 546 | "version": "3.0.0", 547 | "license": "MIT", 548 | "dependencies": { 549 | "fastest-levenshtein": "^1.0.7" 550 | } 551 | }, 552 | "node_modules/@raycast/api": { 553 | "version": "1.93.2", 554 | "license": "MIT", 555 | "dependencies": { 556 | "@oclif/core": "^4.0.33", 557 | "@oclif/plugin-autocomplete": "^3.2.10", 558 | "@oclif/plugin-help": "^6.2.18", 559 | "@oclif/plugin-not-found": "^3.2.28", 560 | "@types/node": "20.8.10", 561 | "@types/react": "18.3.3", 562 | "esbuild": "^0.25.0", 563 | "react": "18.3.1" 564 | }, 565 | "bin": { 566 | "ray": "bin/run.js" 567 | }, 568 | "engines": { 569 | "node": ">=20.5.0" 570 | }, 571 | "peerDependencies": { 572 | "@types/node": "20.8.10", 573 | "@types/react": "18.3.3", 574 | "react-devtools": "5.2.0" 575 | }, 576 | "peerDependenciesMeta": { 577 | "@types/node": { 578 | "optional": true 579 | }, 580 | "@types/react": { 581 | "optional": true 582 | }, 583 | "react-devtools": { 584 | "optional": true 585 | } 586 | } 587 | }, 588 | "node_modules/@raycast/api/node_modules/@types/react": { 589 | "version": "18.3.3", 590 | "license": "MIT", 591 | "dependencies": { 592 | "@types/prop-types": "*", 593 | "csstype": "^3.0.2" 594 | } 595 | }, 596 | "node_modules/@raycast/eslint-config": { 597 | "version": "1.0.11", 598 | "dev": true, 599 | "license": "MIT", 600 | "dependencies": { 601 | "@raycast/eslint-plugin": "^1.0.11", 602 | "@rushstack/eslint-patch": "^1.10.4", 603 | "@typescript-eslint/eslint-plugin": "^6.8.0", 604 | "@typescript-eslint/parser": "^6.8.0", 605 | "eslint-config-prettier": "^9.1.0" 606 | }, 607 | "peerDependencies": { 608 | "eslint": ">=7", 609 | "prettier": ">=2", 610 | "typescript": ">=4" 611 | } 612 | }, 613 | "node_modules/@raycast/eslint-config/node_modules/eslint-config-prettier": { 614 | "version": "9.1.0", 615 | "dev": true, 616 | "license": "MIT", 617 | "bin": { 618 | "eslint-config-prettier": "bin/cli.js" 619 | }, 620 | "peerDependencies": { 621 | "eslint": ">=7.0.0" 622 | } 623 | }, 624 | "node_modules/@raycast/eslint-plugin": { 625 | "version": "1.0.16", 626 | "dev": true, 627 | "license": "MIT", 628 | "dependencies": { 629 | "@typescript-eslint/utils": "^5.62.0" 630 | }, 631 | "peerDependencies": { 632 | "eslint": ">=7" 633 | } 634 | }, 635 | "node_modules/@raycast/utils": { 636 | "version": "1.19.1", 637 | "license": "MIT", 638 | "dependencies": { 639 | "cross-fetch": "^3.1.6", 640 | "dequal": "^2.0.3", 641 | "object-hash": "^3.0.0", 642 | "signal-exit": "^4.0.2", 643 | "stream-chain": "^2.2.5", 644 | "stream-json": "^1.8.0" 645 | }, 646 | "peerDependencies": { 647 | "@raycast/api": ">=1.69.0" 648 | } 649 | }, 650 | "node_modules/@rushstack/eslint-patch": { 651 | "version": "1.11.0", 652 | "dev": true, 653 | "license": "MIT" 654 | }, 655 | "node_modules/@types/json-schema": { 656 | "version": "7.0.15", 657 | "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.15.tgz", 658 | "integrity": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==", 659 | "dev": true, 660 | "license": "MIT" 661 | }, 662 | "node_modules/@types/node": { 663 | "version": "20.8.10", 664 | "license": "MIT", 665 | "dependencies": { 666 | "undici-types": "~5.26.4" 667 | } 668 | }, 669 | "node_modules/@types/prop-types": { 670 | "version": "15.7.14", 671 | "license": "MIT" 672 | }, 673 | "node_modules/@types/react": { 674 | "version": "19.1.0", 675 | "resolved": "https://registry.npmjs.org/@types/react/-/react-19.1.0.tgz", 676 | "integrity": "sha512-UaicktuQI+9UKyA4njtDOGBD/67t8YEBt2xdfqu8+gP9hqPUPsiXlNPcpS2gVdjmis5GKPG3fCxbQLVgxsQZ8w==", 677 | "license": "MIT", 678 | "dependencies": { 679 | "csstype": "^3.0.2" 680 | } 681 | }, 682 | "node_modules/@types/semver": { 683 | "version": "7.5.8", 684 | "dev": true, 685 | "license": "MIT" 686 | }, 687 | "node_modules/@typescript-eslint/eslint-plugin": { 688 | "version": "6.21.0", 689 | "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-6.21.0.tgz", 690 | "integrity": "sha512-oy9+hTPCUFpngkEZUSzbf9MxI65wbKFoQYsgPdILTfbUldp5ovUuphZVe4i30emU9M/kP+T64Di0mxl7dSw3MA==", 691 | "dev": true, 692 | "license": "MIT", 693 | "dependencies": { 694 | "@eslint-community/regexpp": "^4.5.1", 695 | "@typescript-eslint/scope-manager": "6.21.0", 696 | "@typescript-eslint/type-utils": "6.21.0", 697 | "@typescript-eslint/utils": "6.21.0", 698 | "@typescript-eslint/visitor-keys": "6.21.0", 699 | "debug": "^4.3.4", 700 | "graphemer": "^1.4.0", 701 | "ignore": "^5.2.4", 702 | "natural-compare": "^1.4.0", 703 | "semver": "^7.5.4", 704 | "ts-api-utils": "^1.0.1" 705 | }, 706 | "engines": { 707 | "node": "^16.0.0 || >=18.0.0" 708 | }, 709 | "funding": { 710 | "type": "opencollective", 711 | "url": "https://opencollective.com/typescript-eslint" 712 | }, 713 | "peerDependencies": { 714 | "@typescript-eslint/parser": "^6.0.0 || ^6.0.0-alpha", 715 | "eslint": "^7.0.0 || ^8.0.0" 716 | }, 717 | "peerDependenciesMeta": { 718 | "typescript": { 719 | "optional": true 720 | } 721 | } 722 | }, 723 | "node_modules/@typescript-eslint/eslint-plugin/node_modules/@typescript-eslint/utils": { 724 | "version": "6.21.0", 725 | "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-6.21.0.tgz", 726 | "integrity": "sha512-NfWVaC8HP9T8cbKQxHcsJBY5YE1O33+jpMwN45qzWWaPDZgLIbo12toGMWnmhvCpd3sIxkpDw3Wv1B3dYrbDQQ==", 727 | "dev": true, 728 | "license": "MIT", 729 | "dependencies": { 730 | "@eslint-community/eslint-utils": "^4.4.0", 731 | "@types/json-schema": "^7.0.12", 732 | "@types/semver": "^7.5.0", 733 | "@typescript-eslint/scope-manager": "6.21.0", 734 | "@typescript-eslint/types": "6.21.0", 735 | "@typescript-eslint/typescript-estree": "6.21.0", 736 | "semver": "^7.5.4" 737 | }, 738 | "engines": { 739 | "node": "^16.0.0 || >=18.0.0" 740 | }, 741 | "funding": { 742 | "type": "opencollective", 743 | "url": "https://opencollective.com/typescript-eslint" 744 | }, 745 | "peerDependencies": { 746 | "eslint": "^7.0.0 || ^8.0.0" 747 | } 748 | }, 749 | "node_modules/@typescript-eslint/parser": { 750 | "version": "6.21.0", 751 | "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-6.21.0.tgz", 752 | "integrity": "sha512-tbsV1jPne5CkFQCgPBcDOt30ItF7aJoZL997JSF7MhGQqOeT3svWRYxiqlfA5RUdlHN6Fi+EI9bxqbdyAUZjYQ==", 753 | "dev": true, 754 | "license": "BSD-2-Clause", 755 | "dependencies": { 756 | "@typescript-eslint/scope-manager": "6.21.0", 757 | "@typescript-eslint/types": "6.21.0", 758 | "@typescript-eslint/typescript-estree": "6.21.0", 759 | "@typescript-eslint/visitor-keys": "6.21.0", 760 | "debug": "^4.3.4" 761 | }, 762 | "engines": { 763 | "node": "^16.0.0 || >=18.0.0" 764 | }, 765 | "funding": { 766 | "type": "opencollective", 767 | "url": "https://opencollective.com/typescript-eslint" 768 | }, 769 | "peerDependencies": { 770 | "eslint": "^7.0.0 || ^8.0.0" 771 | }, 772 | "peerDependenciesMeta": { 773 | "typescript": { 774 | "optional": true 775 | } 776 | } 777 | }, 778 | "node_modules/@typescript-eslint/scope-manager": { 779 | "version": "6.21.0", 780 | "dev": true, 781 | "license": "MIT", 782 | "dependencies": { 783 | "@typescript-eslint/types": "6.21.0", 784 | "@typescript-eslint/visitor-keys": "6.21.0" 785 | }, 786 | "engines": { 787 | "node": "^16.0.0 || >=18.0.0" 788 | }, 789 | "funding": { 790 | "type": "opencollective", 791 | "url": "https://opencollective.com/typescript-eslint" 792 | } 793 | }, 794 | "node_modules/@typescript-eslint/type-utils": { 795 | "version": "6.21.0", 796 | "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-6.21.0.tgz", 797 | "integrity": "sha512-rZQI7wHfao8qMX3Rd3xqeYSMCL3SoiSQLBATSiVKARdFGCYSRvmViieZjqc58jKgs8Y8i9YvVVhRbHSTA4VBag==", 798 | "dev": true, 799 | "license": "MIT", 800 | "dependencies": { 801 | "@typescript-eslint/typescript-estree": "6.21.0", 802 | "@typescript-eslint/utils": "6.21.0", 803 | "debug": "^4.3.4", 804 | "ts-api-utils": "^1.0.1" 805 | }, 806 | "engines": { 807 | "node": "^16.0.0 || >=18.0.0" 808 | }, 809 | "funding": { 810 | "type": "opencollective", 811 | "url": "https://opencollective.com/typescript-eslint" 812 | }, 813 | "peerDependencies": { 814 | "eslint": "^7.0.0 || ^8.0.0" 815 | }, 816 | "peerDependenciesMeta": { 817 | "typescript": { 818 | "optional": true 819 | } 820 | } 821 | }, 822 | "node_modules/@typescript-eslint/type-utils/node_modules/@typescript-eslint/utils": { 823 | "version": "6.21.0", 824 | "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-6.21.0.tgz", 825 | "integrity": "sha512-NfWVaC8HP9T8cbKQxHcsJBY5YE1O33+jpMwN45qzWWaPDZgLIbo12toGMWnmhvCpd3sIxkpDw3Wv1B3dYrbDQQ==", 826 | "dev": true, 827 | "license": "MIT", 828 | "dependencies": { 829 | "@eslint-community/eslint-utils": "^4.4.0", 830 | "@types/json-schema": "^7.0.12", 831 | "@types/semver": "^7.5.0", 832 | "@typescript-eslint/scope-manager": "6.21.0", 833 | "@typescript-eslint/types": "6.21.0", 834 | "@typescript-eslint/typescript-estree": "6.21.0", 835 | "semver": "^7.5.4" 836 | }, 837 | "engines": { 838 | "node": "^16.0.0 || >=18.0.0" 839 | }, 840 | "funding": { 841 | "type": "opencollective", 842 | "url": "https://opencollective.com/typescript-eslint" 843 | }, 844 | "peerDependencies": { 845 | "eslint": "^7.0.0 || ^8.0.0" 846 | } 847 | }, 848 | "node_modules/@typescript-eslint/types": { 849 | "version": "6.21.0", 850 | "dev": true, 851 | "license": "MIT", 852 | "engines": { 853 | "node": "^16.0.0 || >=18.0.0" 854 | }, 855 | "funding": { 856 | "type": "opencollective", 857 | "url": "https://opencollective.com/typescript-eslint" 858 | } 859 | }, 860 | "node_modules/@typescript-eslint/typescript-estree": { 861 | "version": "6.21.0", 862 | "dev": true, 863 | "license": "BSD-2-Clause", 864 | "dependencies": { 865 | "@typescript-eslint/types": "6.21.0", 866 | "@typescript-eslint/visitor-keys": "6.21.0", 867 | "debug": "^4.3.4", 868 | "globby": "^11.1.0", 869 | "is-glob": "^4.0.3", 870 | "minimatch": "9.0.3", 871 | "semver": "^7.5.4", 872 | "ts-api-utils": "^1.0.1" 873 | }, 874 | "engines": { 875 | "node": "^16.0.0 || >=18.0.0" 876 | }, 877 | "funding": { 878 | "type": "opencollective", 879 | "url": "https://opencollective.com/typescript-eslint" 880 | }, 881 | "peerDependenciesMeta": { 882 | "typescript": { 883 | "optional": true 884 | } 885 | } 886 | }, 887 | "node_modules/@typescript-eslint/typescript-estree/node_modules/brace-expansion": { 888 | "version": "2.0.1", 889 | "dev": true, 890 | "license": "MIT", 891 | "dependencies": { 892 | "balanced-match": "^1.0.0" 893 | } 894 | }, 895 | "node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch": { 896 | "version": "9.0.3", 897 | "dev": true, 898 | "license": "ISC", 899 | "dependencies": { 900 | "brace-expansion": "^2.0.1" 901 | }, 902 | "engines": { 903 | "node": ">=16 || 14 >=14.17" 904 | }, 905 | "funding": { 906 | "url": "https://github.com/sponsors/isaacs" 907 | } 908 | }, 909 | "node_modules/@typescript-eslint/utils": { 910 | "version": "5.62.0", 911 | "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.62.0.tgz", 912 | "integrity": "sha512-n8oxjeb5aIbPFEtmQxQYOLI0i9n5ySBEY/ZEHHZqKQSFnxio1rv6dthascc9dLuwrL0RC5mPCxB7vnAVGAYWAQ==", 913 | "dev": true, 914 | "license": "MIT", 915 | "dependencies": { 916 | "@eslint-community/eslint-utils": "^4.2.0", 917 | "@types/json-schema": "^7.0.9", 918 | "@types/semver": "^7.3.12", 919 | "@typescript-eslint/scope-manager": "5.62.0", 920 | "@typescript-eslint/types": "5.62.0", 921 | "@typescript-eslint/typescript-estree": "5.62.0", 922 | "eslint-scope": "^5.1.1", 923 | "semver": "^7.3.7" 924 | }, 925 | "engines": { 926 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 927 | }, 928 | "funding": { 929 | "type": "opencollective", 930 | "url": "https://opencollective.com/typescript-eslint" 931 | }, 932 | "peerDependencies": { 933 | "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" 934 | } 935 | }, 936 | "node_modules/@typescript-eslint/utils/node_modules/@typescript-eslint/scope-manager": { 937 | "version": "5.62.0", 938 | "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.62.0.tgz", 939 | "integrity": "sha512-VXuvVvZeQCQb5Zgf4HAxc04q5j+WrNAtNh9OwCsCgpKqESMTu3tF/jhZ3xG6T4NZwWl65Bg8KuS2uEvhSfLl0w==", 940 | "dev": true, 941 | "license": "MIT", 942 | "dependencies": { 943 | "@typescript-eslint/types": "5.62.0", 944 | "@typescript-eslint/visitor-keys": "5.62.0" 945 | }, 946 | "engines": { 947 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 948 | }, 949 | "funding": { 950 | "type": "opencollective", 951 | "url": "https://opencollective.com/typescript-eslint" 952 | } 953 | }, 954 | "node_modules/@typescript-eslint/utils/node_modules/@typescript-eslint/types": { 955 | "version": "5.62.0", 956 | "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.62.0.tgz", 957 | "integrity": "sha512-87NVngcbVXUahrRTqIK27gD2t5Cu1yuCXxbLcFtCzZGlfyVWWh8mLHkoxzjsB6DDNnvdL+fW8MiwPEJyGJQDgQ==", 958 | "dev": true, 959 | "license": "MIT", 960 | "engines": { 961 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 962 | }, 963 | "funding": { 964 | "type": "opencollective", 965 | "url": "https://opencollective.com/typescript-eslint" 966 | } 967 | }, 968 | "node_modules/@typescript-eslint/utils/node_modules/@typescript-eslint/typescript-estree": { 969 | "version": "5.62.0", 970 | "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.62.0.tgz", 971 | "integrity": "sha512-CmcQ6uY7b9y694lKdRB8FEel7JbU/40iSAPomu++SjLMntB+2Leay2LO6i8VnJk58MtE9/nQSFIH6jpyRWyYzA==", 972 | "dev": true, 973 | "license": "BSD-2-Clause", 974 | "dependencies": { 975 | "@typescript-eslint/types": "5.62.0", 976 | "@typescript-eslint/visitor-keys": "5.62.0", 977 | "debug": "^4.3.4", 978 | "globby": "^11.1.0", 979 | "is-glob": "^4.0.3", 980 | "semver": "^7.3.7", 981 | "tsutils": "^3.21.0" 982 | }, 983 | "engines": { 984 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 985 | }, 986 | "funding": { 987 | "type": "opencollective", 988 | "url": "https://opencollective.com/typescript-eslint" 989 | }, 990 | "peerDependenciesMeta": { 991 | "typescript": { 992 | "optional": true 993 | } 994 | } 995 | }, 996 | "node_modules/@typescript-eslint/utils/node_modules/@typescript-eslint/visitor-keys": { 997 | "version": "5.62.0", 998 | "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.62.0.tgz", 999 | "integrity": "sha512-07ny+LHRzQXepkGg6w0mFY41fVUNBrL2Roj/++7V1txKugfjm/Ci/qSND03r2RhlJhJYMcTn9AhhSSqQp0Ysyw==", 1000 | "dev": true, 1001 | "license": "MIT", 1002 | "dependencies": { 1003 | "@typescript-eslint/types": "5.62.0", 1004 | "eslint-visitor-keys": "^3.3.0" 1005 | }, 1006 | "engines": { 1007 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 1008 | }, 1009 | "funding": { 1010 | "type": "opencollective", 1011 | "url": "https://opencollective.com/typescript-eslint" 1012 | } 1013 | }, 1014 | "node_modules/@typescript-eslint/visitor-keys": { 1015 | "version": "6.21.0", 1016 | "dev": true, 1017 | "license": "MIT", 1018 | "dependencies": { 1019 | "@typescript-eslint/types": "6.21.0", 1020 | "eslint-visitor-keys": "^3.4.1" 1021 | }, 1022 | "engines": { 1023 | "node": "^16.0.0 || >=18.0.0" 1024 | }, 1025 | "funding": { 1026 | "type": "opencollective", 1027 | "url": "https://opencollective.com/typescript-eslint" 1028 | } 1029 | }, 1030 | "node_modules/@ungap/structured-clone": { 1031 | "version": "1.3.0", 1032 | "resolved": "https://registry.npmjs.org/@ungap/structured-clone/-/structured-clone-1.3.0.tgz", 1033 | "integrity": "sha512-WmoN8qaIAo7WTYWbAZuG8PYEhn5fkz7dZrqTBZ7dtt//lL2Gwms1IcnQ5yHqjDfX8Ft5j4YzDM23f87zBfDe9g==", 1034 | "dev": true, 1035 | "license": "ISC" 1036 | }, 1037 | "node_modules/acorn": { 1038 | "version": "8.14.1", 1039 | "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.14.1.tgz", 1040 | "integrity": "sha512-OvQ/2pUDKmgfCg++xsTX1wGxfTaszcHVcTctW4UJB4hibJx2HXxxO5UmVgyjMa+ZDsiaf5wWLXYpRWMmBI0QHg==", 1041 | "dev": true, 1042 | "license": "MIT", 1043 | "bin": { 1044 | "acorn": "bin/acorn" 1045 | }, 1046 | "engines": { 1047 | "node": ">=0.4.0" 1048 | } 1049 | }, 1050 | "node_modules/acorn-jsx": { 1051 | "version": "5.3.2", 1052 | "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", 1053 | "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", 1054 | "dev": true, 1055 | "license": "MIT", 1056 | "peerDependencies": { 1057 | "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" 1058 | } 1059 | }, 1060 | "node_modules/ajv": { 1061 | "version": "6.12.6", 1062 | "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", 1063 | "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", 1064 | "dev": true, 1065 | "license": "MIT", 1066 | "dependencies": { 1067 | "fast-deep-equal": "^3.1.1", 1068 | "fast-json-stable-stringify": "^2.0.0", 1069 | "json-schema-traverse": "^0.4.1", 1070 | "uri-js": "^4.2.2" 1071 | }, 1072 | "funding": { 1073 | "type": "github", 1074 | "url": "https://github.com/sponsors/epoberezkin" 1075 | } 1076 | }, 1077 | "node_modules/ansi-escapes": { 1078 | "version": "4.3.2", 1079 | "license": "MIT", 1080 | "dependencies": { 1081 | "type-fest": "^0.21.3" 1082 | }, 1083 | "engines": { 1084 | "node": ">=8" 1085 | }, 1086 | "funding": { 1087 | "url": "https://github.com/sponsors/sindresorhus" 1088 | } 1089 | }, 1090 | "node_modules/ansi-escapes/node_modules/type-fest": { 1091 | "version": "0.21.3", 1092 | "license": "(MIT OR CC0-1.0)", 1093 | "engines": { 1094 | "node": ">=10" 1095 | }, 1096 | "funding": { 1097 | "url": "https://github.com/sponsors/sindresorhus" 1098 | } 1099 | }, 1100 | "node_modules/ansi-regex": { 1101 | "version": "5.0.1", 1102 | "license": "MIT", 1103 | "engines": { 1104 | "node": ">=8" 1105 | } 1106 | }, 1107 | "node_modules/ansi-styles": { 1108 | "version": "4.3.0", 1109 | "license": "MIT", 1110 | "dependencies": { 1111 | "color-convert": "^2.0.1" 1112 | }, 1113 | "engines": { 1114 | "node": ">=8" 1115 | }, 1116 | "funding": { 1117 | "url": "https://github.com/chalk/ansi-styles?sponsor=1" 1118 | } 1119 | }, 1120 | "node_modules/ansis": { 1121 | "version": "3.17.0", 1122 | "license": "ISC", 1123 | "engines": { 1124 | "node": ">=14" 1125 | } 1126 | }, 1127 | "node_modules/argparse": { 1128 | "version": "2.0.1", 1129 | "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", 1130 | "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", 1131 | "dev": true, 1132 | "license": "Python-2.0" 1133 | }, 1134 | "node_modules/array-union": { 1135 | "version": "2.1.0", 1136 | "license": "MIT", 1137 | "engines": { 1138 | "node": ">=8" 1139 | } 1140 | }, 1141 | "node_modules/async": { 1142 | "version": "3.2.6", 1143 | "license": "MIT" 1144 | }, 1145 | "node_modules/balanced-match": { 1146 | "version": "1.0.2", 1147 | "license": "MIT" 1148 | }, 1149 | "node_modules/brace-expansion": { 1150 | "version": "1.1.11", 1151 | "license": "MIT", 1152 | "dependencies": { 1153 | "balanced-match": "^1.0.0", 1154 | "concat-map": "0.0.1" 1155 | } 1156 | }, 1157 | "node_modules/braces": { 1158 | "version": "3.0.3", 1159 | "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz", 1160 | "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==", 1161 | "license": "MIT", 1162 | "dependencies": { 1163 | "fill-range": "^7.1.1" 1164 | }, 1165 | "engines": { 1166 | "node": ">=8" 1167 | } 1168 | }, 1169 | "node_modules/callsites": { 1170 | "version": "3.1.0", 1171 | "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", 1172 | "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", 1173 | "dev": true, 1174 | "license": "MIT", 1175 | "engines": { 1176 | "node": ">=6" 1177 | } 1178 | }, 1179 | "node_modules/chalk": { 1180 | "version": "4.1.2", 1181 | "license": "MIT", 1182 | "dependencies": { 1183 | "ansi-styles": "^4.1.0", 1184 | "supports-color": "^7.1.0" 1185 | }, 1186 | "engines": { 1187 | "node": ">=10" 1188 | }, 1189 | "funding": { 1190 | "url": "https://github.com/chalk/chalk?sponsor=1" 1191 | } 1192 | }, 1193 | "node_modules/chardet": { 1194 | "version": "0.7.0", 1195 | "license": "MIT" 1196 | }, 1197 | "node_modules/clean-stack": { 1198 | "version": "3.0.1", 1199 | "license": "MIT", 1200 | "dependencies": { 1201 | "escape-string-regexp": "4.0.0" 1202 | }, 1203 | "engines": { 1204 | "node": ">=10" 1205 | }, 1206 | "funding": { 1207 | "url": "https://github.com/sponsors/sindresorhus" 1208 | } 1209 | }, 1210 | "node_modules/cli-spinners": { 1211 | "version": "2.9.2", 1212 | "license": "MIT", 1213 | "engines": { 1214 | "node": ">=6" 1215 | }, 1216 | "funding": { 1217 | "url": "https://github.com/sponsors/sindresorhus" 1218 | } 1219 | }, 1220 | "node_modules/cli-width": { 1221 | "version": "4.1.0", 1222 | "license": "ISC", 1223 | "engines": { 1224 | "node": ">= 12" 1225 | } 1226 | }, 1227 | "node_modules/color-convert": { 1228 | "version": "2.0.1", 1229 | "license": "MIT", 1230 | "dependencies": { 1231 | "color-name": "~1.1.4" 1232 | }, 1233 | "engines": { 1234 | "node": ">=7.0.0" 1235 | } 1236 | }, 1237 | "node_modules/color-name": { 1238 | "version": "1.1.4", 1239 | "license": "MIT" 1240 | }, 1241 | "node_modules/concat-map": { 1242 | "version": "0.0.1", 1243 | "license": "MIT" 1244 | }, 1245 | "node_modules/cross-fetch": { 1246 | "version": "3.2.0", 1247 | "license": "MIT", 1248 | "dependencies": { 1249 | "node-fetch": "^2.7.0" 1250 | } 1251 | }, 1252 | "node_modules/cross-fetch/node_modules/node-fetch": { 1253 | "version": "2.7.0", 1254 | "license": "MIT", 1255 | "dependencies": { 1256 | "whatwg-url": "^5.0.0" 1257 | }, 1258 | "engines": { 1259 | "node": "4.x || >=6.0.0" 1260 | }, 1261 | "peerDependencies": { 1262 | "encoding": "^0.1.0" 1263 | }, 1264 | "peerDependenciesMeta": { 1265 | "encoding": { 1266 | "optional": true 1267 | } 1268 | } 1269 | }, 1270 | "node_modules/cross-spawn": { 1271 | "version": "7.0.6", 1272 | "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz", 1273 | "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==", 1274 | "dev": true, 1275 | "license": "MIT", 1276 | "dependencies": { 1277 | "path-key": "^3.1.0", 1278 | "shebang-command": "^2.0.0", 1279 | "which": "^2.0.1" 1280 | }, 1281 | "engines": { 1282 | "node": ">= 8" 1283 | } 1284 | }, 1285 | "node_modules/csstype": { 1286 | "version": "3.1.3", 1287 | "license": "MIT" 1288 | }, 1289 | "node_modules/data-uri-to-buffer": { 1290 | "version": "4.0.0", 1291 | "license": "MIT", 1292 | "engines": { 1293 | "node": ">= 12" 1294 | } 1295 | }, 1296 | "node_modules/debug": { 1297 | "version": "4.4.0", 1298 | "license": "MIT", 1299 | "dependencies": { 1300 | "ms": "^2.1.3" 1301 | }, 1302 | "engines": { 1303 | "node": ">=6.0" 1304 | }, 1305 | "peerDependenciesMeta": { 1306 | "supports-color": { 1307 | "optional": true 1308 | } 1309 | } 1310 | }, 1311 | "node_modules/deep-is": { 1312 | "version": "0.1.4", 1313 | "dev": true, 1314 | "license": "MIT" 1315 | }, 1316 | "node_modules/dequal": { 1317 | "version": "2.0.3", 1318 | "license": "MIT", 1319 | "engines": { 1320 | "node": ">=6" 1321 | } 1322 | }, 1323 | "node_modules/dir-glob": { 1324 | "version": "3.0.1", 1325 | "license": "MIT", 1326 | "dependencies": { 1327 | "path-type": "^4.0.0" 1328 | }, 1329 | "engines": { 1330 | "node": ">=8" 1331 | } 1332 | }, 1333 | "node_modules/doctrine": { 1334 | "version": "3.0.0", 1335 | "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", 1336 | "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", 1337 | "dev": true, 1338 | "license": "Apache-2.0", 1339 | "dependencies": { 1340 | "esutils": "^2.0.2" 1341 | }, 1342 | "engines": { 1343 | "node": ">=6.0.0" 1344 | } 1345 | }, 1346 | "node_modules/ejs": { 1347 | "version": "3.1.10", 1348 | "license": "Apache-2.0", 1349 | "dependencies": { 1350 | "jake": "^10.8.5" 1351 | }, 1352 | "bin": { 1353 | "ejs": "bin/cli.js" 1354 | }, 1355 | "engines": { 1356 | "node": ">=0.10.0" 1357 | } 1358 | }, 1359 | "node_modules/emoji-regex": { 1360 | "version": "8.0.0", 1361 | "license": "MIT" 1362 | }, 1363 | "node_modules/esbuild": { 1364 | "version": "0.25.1", 1365 | "hasInstallScript": true, 1366 | "license": "MIT", 1367 | "bin": { 1368 | "esbuild": "bin/esbuild" 1369 | }, 1370 | "engines": { 1371 | "node": ">=18" 1372 | }, 1373 | "optionalDependencies": { 1374 | "@esbuild/aix-ppc64": "0.25.1", 1375 | "@esbuild/android-arm": "0.25.1", 1376 | "@esbuild/android-arm64": "0.25.1", 1377 | "@esbuild/android-x64": "0.25.1", 1378 | "@esbuild/darwin-arm64": "0.25.1", 1379 | "@esbuild/darwin-x64": "0.25.1", 1380 | "@esbuild/freebsd-arm64": "0.25.1", 1381 | "@esbuild/freebsd-x64": "0.25.1", 1382 | "@esbuild/linux-arm": "0.25.1", 1383 | "@esbuild/linux-arm64": "0.25.1", 1384 | "@esbuild/linux-ia32": "0.25.1", 1385 | "@esbuild/linux-loong64": "0.25.1", 1386 | "@esbuild/linux-mips64el": "0.25.1", 1387 | "@esbuild/linux-ppc64": "0.25.1", 1388 | "@esbuild/linux-riscv64": "0.25.1", 1389 | "@esbuild/linux-s390x": "0.25.1", 1390 | "@esbuild/linux-x64": "0.25.1", 1391 | "@esbuild/netbsd-arm64": "0.25.1", 1392 | "@esbuild/netbsd-x64": "0.25.1", 1393 | "@esbuild/openbsd-arm64": "0.25.1", 1394 | "@esbuild/openbsd-x64": "0.25.1", 1395 | "@esbuild/sunos-x64": "0.25.1", 1396 | "@esbuild/win32-arm64": "0.25.1", 1397 | "@esbuild/win32-ia32": "0.25.1", 1398 | "@esbuild/win32-x64": "0.25.1" 1399 | } 1400 | }, 1401 | "node_modules/escape-string-regexp": { 1402 | "version": "4.0.0", 1403 | "license": "MIT", 1404 | "engines": { 1405 | "node": ">=10" 1406 | }, 1407 | "funding": { 1408 | "url": "https://github.com/sponsors/sindresorhus" 1409 | } 1410 | }, 1411 | "node_modules/eslint": { 1412 | "version": "8.57.1", 1413 | "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.57.1.tgz", 1414 | "integrity": "sha512-ypowyDxpVSYpkXr9WPv2PAZCtNip1Mv5KTW0SCurXv/9iOpcrH9PaqUElksqEB6pChqHGDRCFTyrZlGhnLNGiA==", 1415 | "deprecated": "This version is no longer supported. Please see https://eslint.org/version-support for other options.", 1416 | "dev": true, 1417 | "license": "MIT", 1418 | "dependencies": { 1419 | "@eslint-community/eslint-utils": "^4.2.0", 1420 | "@eslint-community/regexpp": "^4.6.1", 1421 | "@eslint/eslintrc": "^2.1.4", 1422 | "@eslint/js": "8.57.1", 1423 | "@humanwhocodes/config-array": "^0.13.0", 1424 | "@humanwhocodes/module-importer": "^1.0.1", 1425 | "@nodelib/fs.walk": "^1.2.8", 1426 | "@ungap/structured-clone": "^1.2.0", 1427 | "ajv": "^6.12.4", 1428 | "chalk": "^4.0.0", 1429 | "cross-spawn": "^7.0.2", 1430 | "debug": "^4.3.2", 1431 | "doctrine": "^3.0.0", 1432 | "escape-string-regexp": "^4.0.0", 1433 | "eslint-scope": "^7.2.2", 1434 | "eslint-visitor-keys": "^3.4.3", 1435 | "espree": "^9.6.1", 1436 | "esquery": "^1.4.2", 1437 | "esutils": "^2.0.2", 1438 | "fast-deep-equal": "^3.1.3", 1439 | "file-entry-cache": "^6.0.1", 1440 | "find-up": "^5.0.0", 1441 | "glob-parent": "^6.0.2", 1442 | "globals": "^13.19.0", 1443 | "graphemer": "^1.4.0", 1444 | "ignore": "^5.2.0", 1445 | "imurmurhash": "^0.1.4", 1446 | "is-glob": "^4.0.0", 1447 | "is-path-inside": "^3.0.3", 1448 | "js-yaml": "^4.1.0", 1449 | "json-stable-stringify-without-jsonify": "^1.0.1", 1450 | "levn": "^0.4.1", 1451 | "lodash.merge": "^4.6.2", 1452 | "minimatch": "^3.1.2", 1453 | "natural-compare": "^1.4.0", 1454 | "optionator": "^0.9.3", 1455 | "strip-ansi": "^6.0.1", 1456 | "text-table": "^0.2.0" 1457 | }, 1458 | "bin": { 1459 | "eslint": "bin/eslint.js" 1460 | }, 1461 | "engines": { 1462 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 1463 | }, 1464 | "funding": { 1465 | "url": "https://opencollective.com/eslint" 1466 | } 1467 | }, 1468 | "node_modules/eslint-scope": { 1469 | "version": "5.1.1", 1470 | "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", 1471 | "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", 1472 | "dev": true, 1473 | "license": "BSD-2-Clause", 1474 | "dependencies": { 1475 | "esrecurse": "^4.3.0", 1476 | "estraverse": "^4.1.1" 1477 | }, 1478 | "engines": { 1479 | "node": ">=8.0.0" 1480 | } 1481 | }, 1482 | "node_modules/eslint-visitor-keys": { 1483 | "version": "3.4.3", 1484 | "dev": true, 1485 | "license": "Apache-2.0", 1486 | "engines": { 1487 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 1488 | }, 1489 | "funding": { 1490 | "url": "https://opencollective.com/eslint" 1491 | } 1492 | }, 1493 | "node_modules/eslint/node_modules/eslint-scope": { 1494 | "version": "7.2.2", 1495 | "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.2.2.tgz", 1496 | "integrity": "sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==", 1497 | "dev": true, 1498 | "license": "BSD-2-Clause", 1499 | "dependencies": { 1500 | "esrecurse": "^4.3.0", 1501 | "estraverse": "^5.2.0" 1502 | }, 1503 | "engines": { 1504 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 1505 | }, 1506 | "funding": { 1507 | "url": "https://opencollective.com/eslint" 1508 | } 1509 | }, 1510 | "node_modules/eslint/node_modules/estraverse": { 1511 | "version": "5.3.0", 1512 | "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", 1513 | "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", 1514 | "dev": true, 1515 | "license": "BSD-2-Clause", 1516 | "engines": { 1517 | "node": ">=4.0" 1518 | } 1519 | }, 1520 | "node_modules/eslint/node_modules/glob-parent": { 1521 | "version": "6.0.2", 1522 | "dev": true, 1523 | "license": "ISC", 1524 | "dependencies": { 1525 | "is-glob": "^4.0.3" 1526 | }, 1527 | "engines": { 1528 | "node": ">=10.13.0" 1529 | } 1530 | }, 1531 | "node_modules/espree": { 1532 | "version": "9.6.1", 1533 | "resolved": "https://registry.npmjs.org/espree/-/espree-9.6.1.tgz", 1534 | "integrity": "sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==", 1535 | "dev": true, 1536 | "license": "BSD-2-Clause", 1537 | "dependencies": { 1538 | "acorn": "^8.9.0", 1539 | "acorn-jsx": "^5.3.2", 1540 | "eslint-visitor-keys": "^3.4.1" 1541 | }, 1542 | "engines": { 1543 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 1544 | }, 1545 | "funding": { 1546 | "url": "https://opencollective.com/eslint" 1547 | } 1548 | }, 1549 | "node_modules/esquery": { 1550 | "version": "1.6.0", 1551 | "dev": true, 1552 | "license": "BSD-3-Clause", 1553 | "dependencies": { 1554 | "estraverse": "^5.1.0" 1555 | }, 1556 | "engines": { 1557 | "node": ">=0.10" 1558 | } 1559 | }, 1560 | "node_modules/esquery/node_modules/estraverse": { 1561 | "version": "5.3.0", 1562 | "dev": true, 1563 | "license": "BSD-2-Clause", 1564 | "engines": { 1565 | "node": ">=4.0" 1566 | } 1567 | }, 1568 | "node_modules/esrecurse": { 1569 | "version": "4.3.0", 1570 | "dev": true, 1571 | "license": "BSD-2-Clause", 1572 | "dependencies": { 1573 | "estraverse": "^5.2.0" 1574 | }, 1575 | "engines": { 1576 | "node": ">=4.0" 1577 | } 1578 | }, 1579 | "node_modules/esrecurse/node_modules/estraverse": { 1580 | "version": "5.3.0", 1581 | "dev": true, 1582 | "license": "BSD-2-Clause", 1583 | "engines": { 1584 | "node": ">=4.0" 1585 | } 1586 | }, 1587 | "node_modules/estraverse": { 1588 | "version": "4.3.0", 1589 | "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", 1590 | "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", 1591 | "dev": true, 1592 | "license": "BSD-2-Clause", 1593 | "engines": { 1594 | "node": ">=4.0" 1595 | } 1596 | }, 1597 | "node_modules/esutils": { 1598 | "version": "2.0.3", 1599 | "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", 1600 | "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", 1601 | "dev": true, 1602 | "license": "BSD-2-Clause", 1603 | "engines": { 1604 | "node": ">=0.10.0" 1605 | } 1606 | }, 1607 | "node_modules/external-editor": { 1608 | "version": "3.1.0", 1609 | "license": "MIT", 1610 | "dependencies": { 1611 | "chardet": "^0.7.0", 1612 | "iconv-lite": "^0.4.24", 1613 | "tmp": "^0.0.33" 1614 | }, 1615 | "engines": { 1616 | "node": ">=4" 1617 | } 1618 | }, 1619 | "node_modules/fast-deep-equal": { 1620 | "version": "3.1.3", 1621 | "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", 1622 | "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", 1623 | "dev": true, 1624 | "license": "MIT" 1625 | }, 1626 | "node_modules/fast-glob": { 1627 | "version": "3.2.12", 1628 | "license": "MIT", 1629 | "dependencies": { 1630 | "@nodelib/fs.stat": "^2.0.2", 1631 | "@nodelib/fs.walk": "^1.2.3", 1632 | "glob-parent": "^5.1.2", 1633 | "merge2": "^1.3.0", 1634 | "micromatch": "^4.0.4" 1635 | }, 1636 | "engines": { 1637 | "node": ">=8.6.0" 1638 | } 1639 | }, 1640 | "node_modules/fast-json-stable-stringify": { 1641 | "version": "2.1.0", 1642 | "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", 1643 | "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", 1644 | "dev": true, 1645 | "license": "MIT" 1646 | }, 1647 | "node_modules/fast-levenshtein": { 1648 | "version": "2.0.6", 1649 | "dev": true, 1650 | "license": "MIT" 1651 | }, 1652 | "node_modules/fastest-levenshtein": { 1653 | "version": "1.0.16", 1654 | "license": "MIT", 1655 | "engines": { 1656 | "node": ">= 4.9.1" 1657 | } 1658 | }, 1659 | "node_modules/fastq": { 1660 | "version": "1.14.0", 1661 | "license": "ISC", 1662 | "dependencies": { 1663 | "reusify": "^1.0.4" 1664 | } 1665 | }, 1666 | "node_modules/fetch-blob": { 1667 | "version": "3.2.0", 1668 | "funding": [ 1669 | { 1670 | "type": "github", 1671 | "url": "https://github.com/sponsors/jimmywarting" 1672 | }, 1673 | { 1674 | "type": "paypal", 1675 | "url": "https://paypal.me/jimmywarting" 1676 | } 1677 | ], 1678 | "license": "MIT", 1679 | "dependencies": { 1680 | "node-domexception": "^1.0.0", 1681 | "web-streams-polyfill": "^3.0.3" 1682 | }, 1683 | "engines": { 1684 | "node": "^12.20 || >= 14.13" 1685 | } 1686 | }, 1687 | "node_modules/file-entry-cache": { 1688 | "version": "6.0.1", 1689 | "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", 1690 | "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", 1691 | "dev": true, 1692 | "license": "MIT", 1693 | "dependencies": { 1694 | "flat-cache": "^3.0.4" 1695 | }, 1696 | "engines": { 1697 | "node": "^10.12.0 || >=12.0.0" 1698 | } 1699 | }, 1700 | "node_modules/filelist": { 1701 | "version": "1.0.4", 1702 | "license": "Apache-2.0", 1703 | "dependencies": { 1704 | "minimatch": "^5.0.1" 1705 | } 1706 | }, 1707 | "node_modules/filelist/node_modules/brace-expansion": { 1708 | "version": "2.0.1", 1709 | "license": "MIT", 1710 | "dependencies": { 1711 | "balanced-match": "^1.0.0" 1712 | } 1713 | }, 1714 | "node_modules/filelist/node_modules/minimatch": { 1715 | "version": "5.1.6", 1716 | "license": "ISC", 1717 | "dependencies": { 1718 | "brace-expansion": "^2.0.1" 1719 | }, 1720 | "engines": { 1721 | "node": ">=10" 1722 | } 1723 | }, 1724 | "node_modules/fill-range": { 1725 | "version": "7.1.1", 1726 | "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz", 1727 | "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==", 1728 | "license": "MIT", 1729 | "dependencies": { 1730 | "to-regex-range": "^5.0.1" 1731 | }, 1732 | "engines": { 1733 | "node": ">=8" 1734 | } 1735 | }, 1736 | "node_modules/find-up": { 1737 | "version": "5.0.0", 1738 | "dev": true, 1739 | "license": "MIT", 1740 | "dependencies": { 1741 | "locate-path": "^6.0.0", 1742 | "path-exists": "^4.0.0" 1743 | }, 1744 | "engines": { 1745 | "node": ">=10" 1746 | }, 1747 | "funding": { 1748 | "url": "https://github.com/sponsors/sindresorhus" 1749 | } 1750 | }, 1751 | "node_modules/flat-cache": { 1752 | "version": "3.2.0", 1753 | "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.2.0.tgz", 1754 | "integrity": "sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==", 1755 | "dev": true, 1756 | "license": "MIT", 1757 | "dependencies": { 1758 | "flatted": "^3.2.9", 1759 | "keyv": "^4.5.3", 1760 | "rimraf": "^3.0.2" 1761 | }, 1762 | "engines": { 1763 | "node": "^10.12.0 || >=12.0.0" 1764 | } 1765 | }, 1766 | "node_modules/flatted": { 1767 | "version": "3.3.3", 1768 | "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.3.3.tgz", 1769 | "integrity": "sha512-GX+ysw4PBCz0PzosHDepZGANEuFCMLrnRTiEy9McGjmkCQYwRq4A/X786G/fjM/+OjsWSU1ZrY5qyARZmO/uwg==", 1770 | "dev": true, 1771 | "license": "ISC" 1772 | }, 1773 | "node_modules/formdata-polyfill": { 1774 | "version": "4.0.10", 1775 | "license": "MIT", 1776 | "dependencies": { 1777 | "fetch-blob": "^3.1.2" 1778 | }, 1779 | "engines": { 1780 | "node": ">=12.20.0" 1781 | } 1782 | }, 1783 | "node_modules/fs.realpath": { 1784 | "version": "1.0.0", 1785 | "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", 1786 | "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", 1787 | "dev": true, 1788 | "license": "ISC" 1789 | }, 1790 | "node_modules/get-package-type": { 1791 | "version": "0.1.0", 1792 | "license": "MIT", 1793 | "engines": { 1794 | "node": ">=8.0.0" 1795 | } 1796 | }, 1797 | "node_modules/glob": { 1798 | "version": "7.2.3", 1799 | "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", 1800 | "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", 1801 | "deprecated": "Glob versions prior to v9 are no longer supported", 1802 | "dev": true, 1803 | "license": "ISC", 1804 | "dependencies": { 1805 | "fs.realpath": "^1.0.0", 1806 | "inflight": "^1.0.4", 1807 | "inherits": "2", 1808 | "minimatch": "^3.1.1", 1809 | "once": "^1.3.0", 1810 | "path-is-absolute": "^1.0.0" 1811 | }, 1812 | "engines": { 1813 | "node": "*" 1814 | }, 1815 | "funding": { 1816 | "url": "https://github.com/sponsors/isaacs" 1817 | } 1818 | }, 1819 | "node_modules/glob-parent": { 1820 | "version": "5.1.2", 1821 | "license": "ISC", 1822 | "dependencies": { 1823 | "is-glob": "^4.0.1" 1824 | }, 1825 | "engines": { 1826 | "node": ">= 6" 1827 | } 1828 | }, 1829 | "node_modules/globals": { 1830 | "version": "13.24.0", 1831 | "resolved": "https://registry.npmjs.org/globals/-/globals-13.24.0.tgz", 1832 | "integrity": "sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==", 1833 | "dev": true, 1834 | "license": "MIT", 1835 | "dependencies": { 1836 | "type-fest": "^0.20.2" 1837 | }, 1838 | "engines": { 1839 | "node": ">=8" 1840 | }, 1841 | "funding": { 1842 | "url": "https://github.com/sponsors/sindresorhus" 1843 | } 1844 | }, 1845 | "node_modules/globby": { 1846 | "version": "11.1.0", 1847 | "license": "MIT", 1848 | "dependencies": { 1849 | "array-union": "^2.1.0", 1850 | "dir-glob": "^3.0.1", 1851 | "fast-glob": "^3.2.9", 1852 | "ignore": "^5.2.0", 1853 | "merge2": "^1.4.1", 1854 | "slash": "^3.0.0" 1855 | }, 1856 | "engines": { 1857 | "node": ">=10" 1858 | }, 1859 | "funding": { 1860 | "url": "https://github.com/sponsors/sindresorhus" 1861 | } 1862 | }, 1863 | "node_modules/graphemer": { 1864 | "version": "1.4.0", 1865 | "dev": true, 1866 | "license": "MIT" 1867 | }, 1868 | "node_modules/has-flag": { 1869 | "version": "4.0.0", 1870 | "license": "MIT", 1871 | "engines": { 1872 | "node": ">=8" 1873 | } 1874 | }, 1875 | "node_modules/iconv-lite": { 1876 | "version": "0.4.24", 1877 | "license": "MIT", 1878 | "dependencies": { 1879 | "safer-buffer": ">= 2.1.2 < 3" 1880 | }, 1881 | "engines": { 1882 | "node": ">=0.10.0" 1883 | } 1884 | }, 1885 | "node_modules/ignore": { 1886 | "version": "5.3.2", 1887 | "license": "MIT", 1888 | "engines": { 1889 | "node": ">= 4" 1890 | } 1891 | }, 1892 | "node_modules/import-fresh": { 1893 | "version": "3.3.1", 1894 | "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.1.tgz", 1895 | "integrity": "sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==", 1896 | "dev": true, 1897 | "license": "MIT", 1898 | "dependencies": { 1899 | "parent-module": "^1.0.0", 1900 | "resolve-from": "^4.0.0" 1901 | }, 1902 | "engines": { 1903 | "node": ">=6" 1904 | }, 1905 | "funding": { 1906 | "url": "https://github.com/sponsors/sindresorhus" 1907 | } 1908 | }, 1909 | "node_modules/imurmurhash": { 1910 | "version": "0.1.4", 1911 | "dev": true, 1912 | "license": "MIT", 1913 | "engines": { 1914 | "node": ">=0.8.19" 1915 | } 1916 | }, 1917 | "node_modules/indent-string": { 1918 | "version": "4.0.0", 1919 | "license": "MIT", 1920 | "engines": { 1921 | "node": ">=8" 1922 | } 1923 | }, 1924 | "node_modules/inflight": { 1925 | "version": "1.0.6", 1926 | "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", 1927 | "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", 1928 | "deprecated": "This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful.", 1929 | "dev": true, 1930 | "license": "ISC", 1931 | "dependencies": { 1932 | "once": "^1.3.0", 1933 | "wrappy": "1" 1934 | } 1935 | }, 1936 | "node_modules/inherits": { 1937 | "version": "2.0.4", 1938 | "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", 1939 | "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", 1940 | "dev": true, 1941 | "license": "ISC" 1942 | }, 1943 | "node_modules/is-docker": { 1944 | "version": "2.2.1", 1945 | "license": "MIT", 1946 | "bin": { 1947 | "is-docker": "cli.js" 1948 | }, 1949 | "engines": { 1950 | "node": ">=8" 1951 | }, 1952 | "funding": { 1953 | "url": "https://github.com/sponsors/sindresorhus" 1954 | } 1955 | }, 1956 | "node_modules/is-extglob": { 1957 | "version": "2.1.1", 1958 | "license": "MIT", 1959 | "engines": { 1960 | "node": ">=0.10.0" 1961 | } 1962 | }, 1963 | "node_modules/is-fullwidth-code-point": { 1964 | "version": "3.0.0", 1965 | "license": "MIT", 1966 | "engines": { 1967 | "node": ">=8" 1968 | } 1969 | }, 1970 | "node_modules/is-glob": { 1971 | "version": "4.0.3", 1972 | "license": "MIT", 1973 | "dependencies": { 1974 | "is-extglob": "^2.1.1" 1975 | }, 1976 | "engines": { 1977 | "node": ">=0.10.0" 1978 | } 1979 | }, 1980 | "node_modules/is-number": { 1981 | "version": "7.0.0", 1982 | "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", 1983 | "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", 1984 | "license": "MIT", 1985 | "engines": { 1986 | "node": ">=0.12.0" 1987 | } 1988 | }, 1989 | "node_modules/is-path-inside": { 1990 | "version": "3.0.3", 1991 | "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", 1992 | "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==", 1993 | "dev": true, 1994 | "license": "MIT", 1995 | "engines": { 1996 | "node": ">=8" 1997 | } 1998 | }, 1999 | "node_modules/is-wsl": { 2000 | "version": "2.2.0", 2001 | "license": "MIT", 2002 | "dependencies": { 2003 | "is-docker": "^2.0.0" 2004 | }, 2005 | "engines": { 2006 | "node": ">=8" 2007 | } 2008 | }, 2009 | "node_modules/isexe": { 2010 | "version": "2.0.0", 2011 | "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", 2012 | "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", 2013 | "dev": true, 2014 | "license": "ISC" 2015 | }, 2016 | "node_modules/jake": { 2017 | "version": "10.9.2", 2018 | "license": "Apache-2.0", 2019 | "dependencies": { 2020 | "async": "^3.2.3", 2021 | "chalk": "^4.0.2", 2022 | "filelist": "^1.0.4", 2023 | "minimatch": "^3.1.2" 2024 | }, 2025 | "bin": { 2026 | "jake": "bin/cli.js" 2027 | }, 2028 | "engines": { 2029 | "node": ">=10" 2030 | } 2031 | }, 2032 | "node_modules/js-tokens": { 2033 | "version": "4.0.0", 2034 | "license": "MIT" 2035 | }, 2036 | "node_modules/js-yaml": { 2037 | "version": "4.1.0", 2038 | "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", 2039 | "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", 2040 | "dev": true, 2041 | "license": "MIT", 2042 | "dependencies": { 2043 | "argparse": "^2.0.1" 2044 | }, 2045 | "bin": { 2046 | "js-yaml": "bin/js-yaml.js" 2047 | } 2048 | }, 2049 | "node_modules/json-buffer": { 2050 | "version": "3.0.1", 2051 | "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", 2052 | "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==", 2053 | "dev": true, 2054 | "license": "MIT" 2055 | }, 2056 | "node_modules/json-schema-traverse": { 2057 | "version": "0.4.1", 2058 | "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", 2059 | "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", 2060 | "dev": true, 2061 | "license": "MIT" 2062 | }, 2063 | "node_modules/json-stable-stringify-without-jsonify": { 2064 | "version": "1.0.1", 2065 | "dev": true, 2066 | "license": "MIT" 2067 | }, 2068 | "node_modules/keyv": { 2069 | "version": "4.5.4", 2070 | "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz", 2071 | "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==", 2072 | "dev": true, 2073 | "license": "MIT", 2074 | "dependencies": { 2075 | "json-buffer": "3.0.1" 2076 | } 2077 | }, 2078 | "node_modules/levn": { 2079 | "version": "0.4.1", 2080 | "dev": true, 2081 | "license": "MIT", 2082 | "dependencies": { 2083 | "prelude-ls": "^1.2.1", 2084 | "type-check": "~0.4.0" 2085 | }, 2086 | "engines": { 2087 | "node": ">= 0.8.0" 2088 | } 2089 | }, 2090 | "node_modules/lilconfig": { 2091 | "version": "3.1.3", 2092 | "license": "MIT", 2093 | "engines": { 2094 | "node": ">=14" 2095 | }, 2096 | "funding": { 2097 | "url": "https://github.com/sponsors/antonk52" 2098 | } 2099 | }, 2100 | "node_modules/locate-path": { 2101 | "version": "6.0.0", 2102 | "dev": true, 2103 | "license": "MIT", 2104 | "dependencies": { 2105 | "p-locate": "^5.0.0" 2106 | }, 2107 | "engines": { 2108 | "node": ">=10" 2109 | }, 2110 | "funding": { 2111 | "url": "https://github.com/sponsors/sindresorhus" 2112 | } 2113 | }, 2114 | "node_modules/lodash.merge": { 2115 | "version": "4.6.2", 2116 | "dev": true, 2117 | "license": "MIT" 2118 | }, 2119 | "node_modules/loose-envify": { 2120 | "version": "1.4.0", 2121 | "license": "MIT", 2122 | "dependencies": { 2123 | "js-tokens": "^3.0.0 || ^4.0.0" 2124 | }, 2125 | "bin": { 2126 | "loose-envify": "cli.js" 2127 | } 2128 | }, 2129 | "node_modules/merge2": { 2130 | "version": "1.4.1", 2131 | "license": "MIT", 2132 | "engines": { 2133 | "node": ">= 8" 2134 | } 2135 | }, 2136 | "node_modules/micromatch": { 2137 | "version": "4.0.8", 2138 | "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz", 2139 | "integrity": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==", 2140 | "license": "MIT", 2141 | "dependencies": { 2142 | "braces": "^3.0.3", 2143 | "picomatch": "^2.3.1" 2144 | }, 2145 | "engines": { 2146 | "node": ">=8.6" 2147 | } 2148 | }, 2149 | "node_modules/minimatch": { 2150 | "version": "3.1.2", 2151 | "license": "ISC", 2152 | "dependencies": { 2153 | "brace-expansion": "^1.1.7" 2154 | }, 2155 | "engines": { 2156 | "node": "*" 2157 | } 2158 | }, 2159 | "node_modules/ms": { 2160 | "version": "2.1.3", 2161 | "license": "MIT" 2162 | }, 2163 | "node_modules/mute-stream": { 2164 | "version": "2.0.0", 2165 | "license": "ISC", 2166 | "engines": { 2167 | "node": "^18.17.0 || >=20.5.0" 2168 | } 2169 | }, 2170 | "node_modules/natural-compare": { 2171 | "version": "1.4.0", 2172 | "dev": true, 2173 | "license": "MIT" 2174 | }, 2175 | "node_modules/node-domexception": { 2176 | "version": "1.0.0", 2177 | "funding": [ 2178 | { 2179 | "type": "github", 2180 | "url": "https://github.com/sponsors/jimmywarting" 2181 | }, 2182 | { 2183 | "type": "github", 2184 | "url": "https://paypal.me/jimmywarting" 2185 | } 2186 | ], 2187 | "license": "MIT", 2188 | "engines": { 2189 | "node": ">=10.5.0" 2190 | } 2191 | }, 2192 | "node_modules/node-fetch": { 2193 | "version": "3.3.2", 2194 | "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-3.3.2.tgz", 2195 | "integrity": "sha512-dRB78srN/l6gqWulah9SrxeYnxeddIG30+GOqK/9OlLVyLg3HPnr6SqOWTWOXKRwC2eGYCkZ59NNuSgvSrpgOA==", 2196 | "license": "MIT", 2197 | "dependencies": { 2198 | "data-uri-to-buffer": "^4.0.0", 2199 | "fetch-blob": "^3.1.4", 2200 | "formdata-polyfill": "^4.0.10" 2201 | }, 2202 | "engines": { 2203 | "node": "^12.20.0 || ^14.13.1 || >=16.0.0" 2204 | }, 2205 | "funding": { 2206 | "type": "opencollective", 2207 | "url": "https://opencollective.com/node-fetch" 2208 | } 2209 | }, 2210 | "node_modules/object-hash": { 2211 | "version": "3.0.0", 2212 | "license": "MIT", 2213 | "engines": { 2214 | "node": ">= 6" 2215 | } 2216 | }, 2217 | "node_modules/once": { 2218 | "version": "1.4.0", 2219 | "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", 2220 | "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", 2221 | "dev": true, 2222 | "license": "ISC", 2223 | "dependencies": { 2224 | "wrappy": "1" 2225 | } 2226 | }, 2227 | "node_modules/optionator": { 2228 | "version": "0.9.4", 2229 | "dev": true, 2230 | "license": "MIT", 2231 | "dependencies": { 2232 | "deep-is": "^0.1.3", 2233 | "fast-levenshtein": "^2.0.6", 2234 | "levn": "^0.4.1", 2235 | "prelude-ls": "^1.2.1", 2236 | "type-check": "^0.4.0", 2237 | "word-wrap": "^1.2.5" 2238 | }, 2239 | "engines": { 2240 | "node": ">= 0.8.0" 2241 | } 2242 | }, 2243 | "node_modules/os-tmpdir": { 2244 | "version": "1.0.2", 2245 | "license": "MIT", 2246 | "engines": { 2247 | "node": ">=0.10.0" 2248 | } 2249 | }, 2250 | "node_modules/p-limit": { 2251 | "version": "3.1.0", 2252 | "dev": true, 2253 | "license": "MIT", 2254 | "dependencies": { 2255 | "yocto-queue": "^0.1.0" 2256 | }, 2257 | "engines": { 2258 | "node": ">=10" 2259 | }, 2260 | "funding": { 2261 | "url": "https://github.com/sponsors/sindresorhus" 2262 | } 2263 | }, 2264 | "node_modules/p-locate": { 2265 | "version": "5.0.0", 2266 | "dev": true, 2267 | "license": "MIT", 2268 | "dependencies": { 2269 | "p-limit": "^3.0.2" 2270 | }, 2271 | "engines": { 2272 | "node": ">=10" 2273 | }, 2274 | "funding": { 2275 | "url": "https://github.com/sponsors/sindresorhus" 2276 | } 2277 | }, 2278 | "node_modules/parent-module": { 2279 | "version": "1.0.1", 2280 | "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", 2281 | "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", 2282 | "dev": true, 2283 | "license": "MIT", 2284 | "dependencies": { 2285 | "callsites": "^3.0.0" 2286 | }, 2287 | "engines": { 2288 | "node": ">=6" 2289 | } 2290 | }, 2291 | "node_modules/path-exists": { 2292 | "version": "4.0.0", 2293 | "dev": true, 2294 | "license": "MIT", 2295 | "engines": { 2296 | "node": ">=8" 2297 | } 2298 | }, 2299 | "node_modules/path-is-absolute": { 2300 | "version": "1.0.1", 2301 | "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", 2302 | "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", 2303 | "dev": true, 2304 | "license": "MIT", 2305 | "engines": { 2306 | "node": ">=0.10.0" 2307 | } 2308 | }, 2309 | "node_modules/path-key": { 2310 | "version": "3.1.1", 2311 | "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", 2312 | "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", 2313 | "dev": true, 2314 | "license": "MIT", 2315 | "engines": { 2316 | "node": ">=8" 2317 | } 2318 | }, 2319 | "node_modules/path-type": { 2320 | "version": "4.0.0", 2321 | "license": "MIT", 2322 | "engines": { 2323 | "node": ">=8" 2324 | } 2325 | }, 2326 | "node_modules/picomatch": { 2327 | "version": "2.3.1", 2328 | "license": "MIT", 2329 | "engines": { 2330 | "node": ">=8.6" 2331 | }, 2332 | "funding": { 2333 | "url": "https://github.com/sponsors/jonschlinkert" 2334 | } 2335 | }, 2336 | "node_modules/prelude-ls": { 2337 | "version": "1.2.1", 2338 | "dev": true, 2339 | "license": "MIT", 2340 | "engines": { 2341 | "node": ">= 0.8.0" 2342 | } 2343 | }, 2344 | "node_modules/prettier": { 2345 | "version": "3.5.3", 2346 | "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.5.3.tgz", 2347 | "integrity": "sha512-QQtaxnoDJeAkDvDKWCLiwIXkTgRhwYDEQCghU9Z6q03iyek/rxRh/2lC3HB7P8sWT2xC/y5JDctPLBIGzHKbhw==", 2348 | "dev": true, 2349 | "license": "MIT", 2350 | "bin": { 2351 | "prettier": "bin/prettier.cjs" 2352 | }, 2353 | "engines": { 2354 | "node": ">=14" 2355 | }, 2356 | "funding": { 2357 | "url": "https://github.com/prettier/prettier?sponsor=1" 2358 | } 2359 | }, 2360 | "node_modules/punycode": { 2361 | "version": "2.3.1", 2362 | "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz", 2363 | "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==", 2364 | "dev": true, 2365 | "license": "MIT", 2366 | "engines": { 2367 | "node": ">=6" 2368 | } 2369 | }, 2370 | "node_modules/queue-microtask": { 2371 | "version": "1.2.3", 2372 | "funding": [ 2373 | { 2374 | "type": "github", 2375 | "url": "https://github.com/sponsors/feross" 2376 | }, 2377 | { 2378 | "type": "patreon", 2379 | "url": "https://www.patreon.com/feross" 2380 | }, 2381 | { 2382 | "type": "consulting", 2383 | "url": "https://feross.org/support" 2384 | } 2385 | ], 2386 | "license": "MIT" 2387 | }, 2388 | "node_modules/react": { 2389 | "version": "18.3.1", 2390 | "license": "MIT", 2391 | "dependencies": { 2392 | "loose-envify": "^1.1.0" 2393 | }, 2394 | "engines": { 2395 | "node": ">=0.10.0" 2396 | } 2397 | }, 2398 | "node_modules/resolve-from": { 2399 | "version": "4.0.0", 2400 | "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", 2401 | "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", 2402 | "dev": true, 2403 | "license": "MIT", 2404 | "engines": { 2405 | "node": ">=4" 2406 | } 2407 | }, 2408 | "node_modules/reusify": { 2409 | "version": "1.0.4", 2410 | "license": "MIT", 2411 | "engines": { 2412 | "iojs": ">=1.0.0", 2413 | "node": ">=0.10.0" 2414 | } 2415 | }, 2416 | "node_modules/rimraf": { 2417 | "version": "3.0.2", 2418 | "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", 2419 | "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", 2420 | "deprecated": "Rimraf versions prior to v4 are no longer supported", 2421 | "dev": true, 2422 | "license": "ISC", 2423 | "dependencies": { 2424 | "glob": "^7.1.3" 2425 | }, 2426 | "bin": { 2427 | "rimraf": "bin.js" 2428 | }, 2429 | "funding": { 2430 | "url": "https://github.com/sponsors/isaacs" 2431 | } 2432 | }, 2433 | "node_modules/run-parallel": { 2434 | "version": "1.2.0", 2435 | "funding": [ 2436 | { 2437 | "type": "github", 2438 | "url": "https://github.com/sponsors/feross" 2439 | }, 2440 | { 2441 | "type": "patreon", 2442 | "url": "https://www.patreon.com/feross" 2443 | }, 2444 | { 2445 | "type": "consulting", 2446 | "url": "https://feross.org/support" 2447 | } 2448 | ], 2449 | "license": "MIT", 2450 | "dependencies": { 2451 | "queue-microtask": "^1.2.2" 2452 | } 2453 | }, 2454 | "node_modules/safer-buffer": { 2455 | "version": "2.1.2", 2456 | "license": "MIT" 2457 | }, 2458 | "node_modules/semver": { 2459 | "version": "7.7.1", 2460 | "license": "ISC", 2461 | "bin": { 2462 | "semver": "bin/semver.js" 2463 | }, 2464 | "engines": { 2465 | "node": ">=10" 2466 | } 2467 | }, 2468 | "node_modules/shebang-command": { 2469 | "version": "2.0.0", 2470 | "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", 2471 | "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", 2472 | "dev": true, 2473 | "license": "MIT", 2474 | "dependencies": { 2475 | "shebang-regex": "^3.0.0" 2476 | }, 2477 | "engines": { 2478 | "node": ">=8" 2479 | } 2480 | }, 2481 | "node_modules/shebang-regex": { 2482 | "version": "3.0.0", 2483 | "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", 2484 | "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", 2485 | "dev": true, 2486 | "license": "MIT", 2487 | "engines": { 2488 | "node": ">=8" 2489 | } 2490 | }, 2491 | "node_modules/signal-exit": { 2492 | "version": "4.1.0", 2493 | "license": "ISC", 2494 | "engines": { 2495 | "node": ">=14" 2496 | }, 2497 | "funding": { 2498 | "url": "https://github.com/sponsors/isaacs" 2499 | } 2500 | }, 2501 | "node_modules/slash": { 2502 | "version": "3.0.0", 2503 | "license": "MIT", 2504 | "engines": { 2505 | "node": ">=8" 2506 | } 2507 | }, 2508 | "node_modules/stream-chain": { 2509 | "version": "2.2.5", 2510 | "license": "BSD-3-Clause" 2511 | }, 2512 | "node_modules/stream-json": { 2513 | "version": "1.9.1", 2514 | "license": "BSD-3-Clause", 2515 | "dependencies": { 2516 | "stream-chain": "^2.2.5" 2517 | } 2518 | }, 2519 | "node_modules/string-width": { 2520 | "version": "4.2.3", 2521 | "license": "MIT", 2522 | "dependencies": { 2523 | "emoji-regex": "^8.0.0", 2524 | "is-fullwidth-code-point": "^3.0.0", 2525 | "strip-ansi": "^6.0.1" 2526 | }, 2527 | "engines": { 2528 | "node": ">=8" 2529 | } 2530 | }, 2531 | "node_modules/strip-ansi": { 2532 | "version": "6.0.1", 2533 | "license": "MIT", 2534 | "dependencies": { 2535 | "ansi-regex": "^5.0.1" 2536 | }, 2537 | "engines": { 2538 | "node": ">=8" 2539 | } 2540 | }, 2541 | "node_modules/strip-json-comments": { 2542 | "version": "3.1.1", 2543 | "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", 2544 | "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", 2545 | "dev": true, 2546 | "license": "MIT", 2547 | "engines": { 2548 | "node": ">=8" 2549 | }, 2550 | "funding": { 2551 | "url": "https://github.com/sponsors/sindresorhus" 2552 | } 2553 | }, 2554 | "node_modules/supports-color": { 2555 | "version": "7.2.0", 2556 | "license": "MIT", 2557 | "dependencies": { 2558 | "has-flag": "^4.0.0" 2559 | }, 2560 | "engines": { 2561 | "node": ">=8" 2562 | } 2563 | }, 2564 | "node_modules/text-search-engine": { 2565 | "version": "1.4.4", 2566 | "resolved": "https://registry.npmjs.org/text-search-engine/-/text-search-engine-1.4.4.tgz", 2567 | "integrity": "sha512-O+Y0nbh9YwQW6/KtiUdiE6F0/LEyImFuo/pvWgbk2gF0Rsom80hcrXxvy+KrkW0vGp4TCm/Gy2VAiPUya+RVsw==", 2568 | "license": "MIT", 2569 | "peerDependencies": { 2570 | "react": "^16.8.0 || ^17.0.0 || ^18.0.0" 2571 | } 2572 | }, 2573 | "node_modules/text-table": { 2574 | "version": "0.2.0", 2575 | "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", 2576 | "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==", 2577 | "dev": true, 2578 | "license": "MIT" 2579 | }, 2580 | "node_modules/tmp": { 2581 | "version": "0.0.33", 2582 | "license": "MIT", 2583 | "dependencies": { 2584 | "os-tmpdir": "~1.0.2" 2585 | }, 2586 | "engines": { 2587 | "node": ">=0.6.0" 2588 | } 2589 | }, 2590 | "node_modules/to-regex-range": { 2591 | "version": "5.0.1", 2592 | "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", 2593 | "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", 2594 | "license": "MIT", 2595 | "dependencies": { 2596 | "is-number": "^7.0.0" 2597 | }, 2598 | "engines": { 2599 | "node": ">=8.0" 2600 | } 2601 | }, 2602 | "node_modules/tr46": { 2603 | "version": "0.0.3", 2604 | "license": "MIT" 2605 | }, 2606 | "node_modules/ts-api-utils": { 2607 | "version": "1.4.3", 2608 | "dev": true, 2609 | "license": "MIT", 2610 | "engines": { 2611 | "node": ">=16" 2612 | }, 2613 | "peerDependencies": { 2614 | "typescript": ">=4.2.0" 2615 | } 2616 | }, 2617 | "node_modules/tslib": { 2618 | "version": "1.14.1", 2619 | "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", 2620 | "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", 2621 | "dev": true, 2622 | "license": "0BSD" 2623 | }, 2624 | "node_modules/tsutils": { 2625 | "version": "3.21.0", 2626 | "resolved": "https://registry.npmjs.org/tsutils/-/tsutils-3.21.0.tgz", 2627 | "integrity": "sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==", 2628 | "dev": true, 2629 | "license": "MIT", 2630 | "dependencies": { 2631 | "tslib": "^1.8.1" 2632 | }, 2633 | "engines": { 2634 | "node": ">= 6" 2635 | }, 2636 | "peerDependencies": { 2637 | "typescript": ">=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta" 2638 | } 2639 | }, 2640 | "node_modules/type-check": { 2641 | "version": "0.4.0", 2642 | "dev": true, 2643 | "license": "MIT", 2644 | "dependencies": { 2645 | "prelude-ls": "^1.2.1" 2646 | }, 2647 | "engines": { 2648 | "node": ">= 0.8.0" 2649 | } 2650 | }, 2651 | "node_modules/type-fest": { 2652 | "version": "0.20.2", 2653 | "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", 2654 | "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", 2655 | "dev": true, 2656 | "license": "(MIT OR CC0-1.0)", 2657 | "engines": { 2658 | "node": ">=10" 2659 | }, 2660 | "funding": { 2661 | "url": "https://github.com/sponsors/sindresorhus" 2662 | } 2663 | }, 2664 | "node_modules/typescript": { 2665 | "version": "5.8.2", 2666 | "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.8.2.tgz", 2667 | "integrity": "sha512-aJn6wq13/afZp/jT9QZmwEjDqqvSGp1VT5GVg+f/t6/oVyrgXM6BY1h9BRh/O5p3PlUPAe+WuiEZOmb/49RqoQ==", 2668 | "dev": true, 2669 | "license": "Apache-2.0", 2670 | "bin": { 2671 | "tsc": "bin/tsc", 2672 | "tsserver": "bin/tsserver" 2673 | }, 2674 | "engines": { 2675 | "node": ">=14.17" 2676 | } 2677 | }, 2678 | "node_modules/undici-types": { 2679 | "version": "5.26.5", 2680 | "license": "MIT" 2681 | }, 2682 | "node_modules/uri-js": { 2683 | "version": "4.4.1", 2684 | "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", 2685 | "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", 2686 | "dev": true, 2687 | "license": "BSD-2-Clause", 2688 | "dependencies": { 2689 | "punycode": "^2.1.0" 2690 | } 2691 | }, 2692 | "node_modules/web-streams-polyfill": { 2693 | "version": "3.2.1", 2694 | "license": "MIT", 2695 | "engines": { 2696 | "node": ">= 8" 2697 | } 2698 | }, 2699 | "node_modules/webidl-conversions": { 2700 | "version": "3.0.1", 2701 | "license": "BSD-2-Clause" 2702 | }, 2703 | "node_modules/whatwg-url": { 2704 | "version": "5.0.0", 2705 | "license": "MIT", 2706 | "dependencies": { 2707 | "tr46": "~0.0.3", 2708 | "webidl-conversions": "^3.0.0" 2709 | } 2710 | }, 2711 | "node_modules/which": { 2712 | "version": "2.0.2", 2713 | "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", 2714 | "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", 2715 | "dev": true, 2716 | "license": "ISC", 2717 | "dependencies": { 2718 | "isexe": "^2.0.0" 2719 | }, 2720 | "bin": { 2721 | "node-which": "bin/node-which" 2722 | }, 2723 | "engines": { 2724 | "node": ">= 8" 2725 | } 2726 | }, 2727 | "node_modules/widest-line": { 2728 | "version": "3.1.0", 2729 | "license": "MIT", 2730 | "dependencies": { 2731 | "string-width": "^4.0.0" 2732 | }, 2733 | "engines": { 2734 | "node": ">=8" 2735 | } 2736 | }, 2737 | "node_modules/word-wrap": { 2738 | "version": "1.2.5", 2739 | "dev": true, 2740 | "license": "MIT", 2741 | "engines": { 2742 | "node": ">=0.10.0" 2743 | } 2744 | }, 2745 | "node_modules/wordwrap": { 2746 | "version": "1.0.0", 2747 | "license": "MIT" 2748 | }, 2749 | "node_modules/wrap-ansi": { 2750 | "version": "7.0.0", 2751 | "license": "MIT", 2752 | "dependencies": { 2753 | "ansi-styles": "^4.0.0", 2754 | "string-width": "^4.1.0", 2755 | "strip-ansi": "^6.0.0" 2756 | }, 2757 | "engines": { 2758 | "node": ">=10" 2759 | }, 2760 | "funding": { 2761 | "url": "https://github.com/chalk/wrap-ansi?sponsor=1" 2762 | } 2763 | }, 2764 | "node_modules/wrappy": { 2765 | "version": "1.0.2", 2766 | "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", 2767 | "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", 2768 | "dev": true, 2769 | "license": "ISC" 2770 | }, 2771 | "node_modules/yocto-queue": { 2772 | "version": "0.1.0", 2773 | "dev": true, 2774 | "license": "MIT", 2775 | "engines": { 2776 | "node": ">=10" 2777 | }, 2778 | "funding": { 2779 | "url": "https://github.com/sponsors/sindresorhus" 2780 | } 2781 | }, 2782 | "node_modules/yoctocolors-cjs": { 2783 | "version": "2.1.2", 2784 | "license": "MIT", 2785 | "engines": { 2786 | "node": ">=18" 2787 | }, 2788 | "funding": { 2789 | "url": "https://github.com/sponsors/sindresorhus" 2790 | } 2791 | } 2792 | } 2793 | } 2794 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "$schema": "https://www.raycast.com/schemas/extension.json", 3 | "name": "wechat", 4 | "title": "WeChat", 5 | "description": "A Raycast extension for WeChat to quickly search your contacts and chat", 6 | "icon": "wechat.png", 7 | "author": "raffeyang", 8 | "contributors": [ 9 | "JokeNeverSOke", 10 | "litomore" 11 | ], 12 | "categories": [ 13 | "Communication" 14 | ], 15 | "license": "MIT", 16 | "commands": [ 17 | { 18 | "name": "index", 19 | "title": "Search Contacts and Chat", 20 | "subtitle": "WeChat", 21 | "description": "A Raycast extension for WeChat to quickly search your contacts and chat", 22 | "mode": "view" 23 | }, 24 | { 25 | "name": "manageTweak", 26 | "title": "Manage WeChatTweak", 27 | "description": "Install, uninstall, or manage WeChatTweak", 28 | "mode": "view" 29 | } 30 | ], 31 | "tools": [ 32 | { 33 | "name": "wechatAI", 34 | "title": "WeChat AI", 35 | "description": "Search and chat with WeChat contacts using natural language.\nGenerate AI chat content." 36 | } 37 | ], 38 | "ai": { 39 | "evals": [ 40 | { 41 | "input": "@wechat Search for contacts with surname Li", 42 | "expected": [ 43 | { 44 | "callsTool": { 45 | "name": "wechatAI", 46 | "arguments": { 47 | "query": "surname Li" 48 | } 49 | } 50 | } 51 | ] 52 | }, 53 | { 54 | "input": "@wechat Find contacts with 2 characters in their name", 55 | "expected": [ 56 | { 57 | "callsTool": { 58 | "name": "wechatAI", 59 | "arguments": { 60 | "query": "2 characters in name" 61 | } 62 | } 63 | } 64 | ] 65 | }, 66 | { 67 | "input": "@wechat Search for contacts with 'yang' in their name", 68 | "expected": [ 69 | { 70 | "callsTool": { 71 | "name": "wechatAI", 72 | "arguments": { 73 | "query": "yang in name" 74 | } 75 | } 76 | } 77 | ] 78 | }, 79 | { 80 | "input": "@wechat Find all contacts named Zhang", 81 | "expected": [ 82 | { 83 | "callsTool": { 84 | "name": "wechatAI", 85 | "arguments": { 86 | "query": "named Zhang" 87 | } 88 | } 89 | } 90 | ] 91 | }, 92 | { 93 | "input": "@wechat 搜索姓李的联系人", 94 | "expected": [ 95 | { 96 | "callsTool": { 97 | "name": "wechatAI", 98 | "arguments": { 99 | "query": "姓李" 100 | } 101 | } 102 | } 103 | ] 104 | }, 105 | { 106 | "input": "@wechat 查找名字中包含'杨'的联系人", 107 | "expected": [ 108 | { 109 | "callsTool": { 110 | "name": "wechatAI", 111 | "arguments": { 112 | "query": "名字包含杨" 113 | } 114 | } 115 | } 116 | ] 117 | }, 118 | { 119 | "input": "@wechat 找出名字是两个字的联系人", 120 | "expected": [ 121 | { 122 | "callsTool": { 123 | "name": "wechatAI", 124 | "arguments": { 125 | "query": "两个字的名字" 126 | } 127 | } 128 | } 129 | ] 130 | }, 131 | { 132 | "input": "@wechat 查找所有姓张的联系人", 133 | "expected": [ 134 | { 135 | "callsTool": { 136 | "name": "wechatAI", 137 | "arguments": { 138 | "query": "姓张" 139 | } 140 | } 141 | } 142 | ] 143 | } 144 | ] 145 | }, 146 | "dependencies": { 147 | "@raycast/api": "^1.93.2", 148 | "@raycast/utils": "^1.19.1", 149 | "@types/react": "^19.1.0", 150 | "node-fetch": "^3.3.2", 151 | "text-search-engine": "^1.4.4" 152 | }, 153 | "devDependencies": { 154 | "@raycast/eslint-config": "^1.0.11", 155 | "eslint": "^8.57.1", 156 | "prettier": "^3.5.3", 157 | "typescript": "^5.8.2" 158 | }, 159 | "scripts": { 160 | "fix-lint": "ray lint --fix", 161 | "publish": "npx @raycast/api@latest publish", 162 | "dev": "ray develop", 163 | "lint": "ray lint", 164 | "build": "ray build -e dist" 165 | } 166 | } -------------------------------------------------------------------------------- /src/components/searchListltem.tsx: -------------------------------------------------------------------------------- 1 | import { Action, ActionPanel, closeMainWindow, environment, Icon, List, showToast, Toast } from "@raycast/api"; 2 | import path from "path"; 3 | import { storageService } from "../services/storageService"; 4 | import { wechatService } from "../services/wechatService"; 5 | import GenerateMessageForm from "../tools/generateMessageForm"; 6 | import { SearchListItemProps } from "../types"; 7 | 8 | export function SearchListItem({ searchResult, isPinned, onTogglePin, onClearHistory }: SearchListItemProps) { 9 | const defaultAvatarPath = path.join(environment.assetsPath, "avatar.png"); 10 | 11 | async function startWeChat() { 12 | try { 13 | await wechatService.startChat(searchResult.arg); 14 | await storageService.addRecentContact(searchResult); 15 | await closeMainWindow({ clearRootSearch: true }); 16 | } catch (error) { 17 | console.error("Failed to open WeChat chat:", error); 18 | await showToast({ 19 | style: Toast.Style.Failure, 20 | title: "Failed to open WeChat chat", 21 | message: String(error), 22 | }); 23 | } 24 | } 25 | 26 | const title = searchResult.title || searchResult.subtitle || searchResult.arg; 27 | const avatarPath = searchResult.icon.path || defaultAvatarPath; 28 | 29 | return ( 30 |