Spaces:
Sleeping
Sleeping
Upload 4 files
Browse files- config.yaml +31 -0
- package-lock.json +1669 -0
- package.json +26 -0
- tsconfig.json +23 -0
config.yaml
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Cursor2API v2 配置文件
|
| 2 |
+
|
| 3 |
+
# 服务端口
|
| 4 |
+
port: 7860
|
| 5 |
+
|
| 6 |
+
# 请求超时(秒)
|
| 7 |
+
timeout: 120
|
| 8 |
+
|
| 9 |
+
# 代理设置(可选)
|
| 10 |
+
# proxy: "http://127.0.0.1:7890"
|
| 11 |
+
|
| 12 |
+
# Cursor 使用的模型
|
| 13 |
+
cursor_model: "anthropic/claude-sonnet-4.6"
|
| 14 |
+
|
| 15 |
+
# 浏览器指纹配置
|
| 16 |
+
fingerprint:
|
| 17 |
+
user_agent: "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/140.0.0.0 Safari/537.36"
|
| 18 |
+
|
| 19 |
+
# 视觉处理降级配置(可选)
|
| 20 |
+
# 如果开启,可以拦截您发给大模型的图片进行降级处理(因为目前免费 Cursor 不支持视觉)。
|
| 21 |
+
vision:
|
| 22 |
+
enabled: true
|
| 23 |
+
# mode 选项: 'ocr' 或 'api'
|
| 24 |
+
# 'ocr': [默认模式] 彻底免 Key,零配置,完全依赖本机的 CPU 识图,提取文本、报错日志、代码段后发给大模型。
|
| 25 |
+
# 'api': 需要配置下方的 baseUrl 和 apiKey,把图发给外部视觉模型(如 Gemini、OpenRouter),能“看到”画面内容和色彩。
|
| 26 |
+
mode: 'ocr'
|
| 27 |
+
|
| 28 |
+
# ---------- 以下选项仅在 mode: 'api' 时才生效 ----------
|
| 29 |
+
# base_url: "https://openrouter.ai/api/v1/chat/completions"
|
| 30 |
+
# api_key: "sk-or-v1-..."
|
| 31 |
+
# model: "meta-llama/llama-3.2-11b-vision-instruct:free"
|
package-lock.json
ADDED
|
@@ -0,0 +1,1669 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"name": "cursor2api",
|
| 3 |
+
"version": "2.0.0",
|
| 4 |
+
"lockfileVersion": 3,
|
| 5 |
+
"requires": true,
|
| 6 |
+
"packages": {
|
| 7 |
+
"": {
|
| 8 |
+
"name": "cursor2api",
|
| 9 |
+
"version": "2.0.0",
|
| 10 |
+
"dependencies": {
|
| 11 |
+
"dotenv": "^16.5.0",
|
| 12 |
+
"eventsource-parser": "^3.0.1",
|
| 13 |
+
"express": "^5.1.0",
|
| 14 |
+
"tesseract.js": "^7.0.0",
|
| 15 |
+
"uuid": "^11.1.0",
|
| 16 |
+
"yaml": "^2.7.1"
|
| 17 |
+
},
|
| 18 |
+
"devDependencies": {
|
| 19 |
+
"@types/express": "^5.0.2",
|
| 20 |
+
"@types/node": "^22.15.0",
|
| 21 |
+
"@types/uuid": "^10.0.0",
|
| 22 |
+
"tsx": "^4.19.0",
|
| 23 |
+
"typescript": "^5.8.0"
|
| 24 |
+
}
|
| 25 |
+
},
|
| 26 |
+
"node_modules/@esbuild/aix-ppc64": {
|
| 27 |
+
"version": "0.27.3",
|
| 28 |
+
"resolved": "https://registry.npmmirror.com/@esbuild/aix-ppc64/-/aix-ppc64-0.27.3.tgz",
|
| 29 |
+
"integrity": "sha512-9fJMTNFTWZMh5qwrBItuziu834eOCUcEqymSH7pY+zoMVEZg3gcPuBNxH1EvfVYe9h0x/Ptw8KBzv7qxb7l8dg==",
|
| 30 |
+
"cpu": [
|
| 31 |
+
"ppc64"
|
| 32 |
+
],
|
| 33 |
+
"dev": true,
|
| 34 |
+
"license": "MIT",
|
| 35 |
+
"optional": true,
|
| 36 |
+
"os": [
|
| 37 |
+
"aix"
|
| 38 |
+
],
|
| 39 |
+
"engines": {
|
| 40 |
+
"node": ">=18"
|
| 41 |
+
}
|
| 42 |
+
},
|
| 43 |
+
"node_modules/@esbuild/android-arm": {
|
| 44 |
+
"version": "0.27.3",
|
| 45 |
+
"resolved": "https://registry.npmmirror.com/@esbuild/android-arm/-/android-arm-0.27.3.tgz",
|
| 46 |
+
"integrity": "sha512-i5D1hPY7GIQmXlXhs2w8AWHhenb00+GxjxRncS2ZM7YNVGNfaMxgzSGuO8o8SJzRc/oZwU2bcScvVERk03QhzA==",
|
| 47 |
+
"cpu": [
|
| 48 |
+
"arm"
|
| 49 |
+
],
|
| 50 |
+
"dev": true,
|
| 51 |
+
"license": "MIT",
|
| 52 |
+
"optional": true,
|
| 53 |
+
"os": [
|
| 54 |
+
"android"
|
| 55 |
+
],
|
| 56 |
+
"engines": {
|
| 57 |
+
"node": ">=18"
|
| 58 |
+
}
|
| 59 |
+
},
|
| 60 |
+
"node_modules/@esbuild/android-arm64": {
|
| 61 |
+
"version": "0.27.3",
|
| 62 |
+
"resolved": "https://registry.npmmirror.com/@esbuild/android-arm64/-/android-arm64-0.27.3.tgz",
|
| 63 |
+
"integrity": "sha512-YdghPYUmj/FX2SYKJ0OZxf+iaKgMsKHVPF1MAq/P8WirnSpCStzKJFjOjzsW0QQ7oIAiccHdcqjbHmJxRb/dmg==",
|
| 64 |
+
"cpu": [
|
| 65 |
+
"arm64"
|
| 66 |
+
],
|
| 67 |
+
"dev": true,
|
| 68 |
+
"license": "MIT",
|
| 69 |
+
"optional": true,
|
| 70 |
+
"os": [
|
| 71 |
+
"android"
|
| 72 |
+
],
|
| 73 |
+
"engines": {
|
| 74 |
+
"node": ">=18"
|
| 75 |
+
}
|
| 76 |
+
},
|
| 77 |
+
"node_modules/@esbuild/android-x64": {
|
| 78 |
+
"version": "0.27.3",
|
| 79 |
+
"resolved": "https://registry.npmmirror.com/@esbuild/android-x64/-/android-x64-0.27.3.tgz",
|
| 80 |
+
"integrity": "sha512-IN/0BNTkHtk8lkOM8JWAYFg4ORxBkZQf9zXiEOfERX/CzxW3Vg1ewAhU7QSWQpVIzTW+b8Xy+lGzdYXV6UZObQ==",
|
| 81 |
+
"cpu": [
|
| 82 |
+
"x64"
|
| 83 |
+
],
|
| 84 |
+
"dev": true,
|
| 85 |
+
"license": "MIT",
|
| 86 |
+
"optional": true,
|
| 87 |
+
"os": [
|
| 88 |
+
"android"
|
| 89 |
+
],
|
| 90 |
+
"engines": {
|
| 91 |
+
"node": ">=18"
|
| 92 |
+
}
|
| 93 |
+
},
|
| 94 |
+
"node_modules/@esbuild/darwin-arm64": {
|
| 95 |
+
"version": "0.27.3",
|
| 96 |
+
"resolved": "https://registry.npmmirror.com/@esbuild/darwin-arm64/-/darwin-arm64-0.27.3.tgz",
|
| 97 |
+
"integrity": "sha512-Re491k7ByTVRy0t3EKWajdLIr0gz2kKKfzafkth4Q8A5n1xTHrkqZgLLjFEHVD+AXdUGgQMq+Godfq45mGpCKg==",
|
| 98 |
+
"cpu": [
|
| 99 |
+
"arm64"
|
| 100 |
+
],
|
| 101 |
+
"dev": true,
|
| 102 |
+
"license": "MIT",
|
| 103 |
+
"optional": true,
|
| 104 |
+
"os": [
|
| 105 |
+
"darwin"
|
| 106 |
+
],
|
| 107 |
+
"engines": {
|
| 108 |
+
"node": ">=18"
|
| 109 |
+
}
|
| 110 |
+
},
|
| 111 |
+
"node_modules/@esbuild/darwin-x64": {
|
| 112 |
+
"version": "0.27.3",
|
| 113 |
+
"resolved": "https://registry.npmmirror.com/@esbuild/darwin-x64/-/darwin-x64-0.27.3.tgz",
|
| 114 |
+
"integrity": "sha512-vHk/hA7/1AckjGzRqi6wbo+jaShzRowYip6rt6q7VYEDX4LEy1pZfDpdxCBnGtl+A5zq8iXDcyuxwtv3hNtHFg==",
|
| 115 |
+
"cpu": [
|
| 116 |
+
"x64"
|
| 117 |
+
],
|
| 118 |
+
"dev": true,
|
| 119 |
+
"license": "MIT",
|
| 120 |
+
"optional": true,
|
| 121 |
+
"os": [
|
| 122 |
+
"darwin"
|
| 123 |
+
],
|
| 124 |
+
"engines": {
|
| 125 |
+
"node": ">=18"
|
| 126 |
+
}
|
| 127 |
+
},
|
| 128 |
+
"node_modules/@esbuild/freebsd-arm64": {
|
| 129 |
+
"version": "0.27.3",
|
| 130 |
+
"resolved": "https://registry.npmmirror.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.27.3.tgz",
|
| 131 |
+
"integrity": "sha512-ipTYM2fjt3kQAYOvo6vcxJx3nBYAzPjgTCk7QEgZG8AUO3ydUhvelmhrbOheMnGOlaSFUoHXB6un+A7q4ygY9w==",
|
| 132 |
+
"cpu": [
|
| 133 |
+
"arm64"
|
| 134 |
+
],
|
| 135 |
+
"dev": true,
|
| 136 |
+
"license": "MIT",
|
| 137 |
+
"optional": true,
|
| 138 |
+
"os": [
|
| 139 |
+
"freebsd"
|
| 140 |
+
],
|
| 141 |
+
"engines": {
|
| 142 |
+
"node": ">=18"
|
| 143 |
+
}
|
| 144 |
+
},
|
| 145 |
+
"node_modules/@esbuild/freebsd-x64": {
|
| 146 |
+
"version": "0.27.3",
|
| 147 |
+
"resolved": "https://registry.npmmirror.com/@esbuild/freebsd-x64/-/freebsd-x64-0.27.3.tgz",
|
| 148 |
+
"integrity": "sha512-dDk0X87T7mI6U3K9VjWtHOXqwAMJBNN2r7bejDsc+j03SEjtD9HrOl8gVFByeM0aJksoUuUVU9TBaZa2rgj0oA==",
|
| 149 |
+
"cpu": [
|
| 150 |
+
"x64"
|
| 151 |
+
],
|
| 152 |
+
"dev": true,
|
| 153 |
+
"license": "MIT",
|
| 154 |
+
"optional": true,
|
| 155 |
+
"os": [
|
| 156 |
+
"freebsd"
|
| 157 |
+
],
|
| 158 |
+
"engines": {
|
| 159 |
+
"node": ">=18"
|
| 160 |
+
}
|
| 161 |
+
},
|
| 162 |
+
"node_modules/@esbuild/linux-arm": {
|
| 163 |
+
"version": "0.27.3",
|
| 164 |
+
"resolved": "https://registry.npmmirror.com/@esbuild/linux-arm/-/linux-arm-0.27.3.tgz",
|
| 165 |
+
"integrity": "sha512-s6nPv2QkSupJwLYyfS+gwdirm0ukyTFNl3KTgZEAiJDd+iHZcbTPPcWCcRYH+WlNbwChgH2QkE9NSlNrMT8Gfw==",
|
| 166 |
+
"cpu": [
|
| 167 |
+
"arm"
|
| 168 |
+
],
|
| 169 |
+
"dev": true,
|
| 170 |
+
"license": "MIT",
|
| 171 |
+
"optional": true,
|
| 172 |
+
"os": [
|
| 173 |
+
"linux"
|
| 174 |
+
],
|
| 175 |
+
"engines": {
|
| 176 |
+
"node": ">=18"
|
| 177 |
+
}
|
| 178 |
+
},
|
| 179 |
+
"node_modules/@esbuild/linux-arm64": {
|
| 180 |
+
"version": "0.27.3",
|
| 181 |
+
"resolved": "https://registry.npmmirror.com/@esbuild/linux-arm64/-/linux-arm64-0.27.3.tgz",
|
| 182 |
+
"integrity": "sha512-sZOuFz/xWnZ4KH3YfFrKCf1WyPZHakVzTiqji3WDc0BCl2kBwiJLCXpzLzUBLgmp4veFZdvN5ChW4Eq/8Fc2Fg==",
|
| 183 |
+
"cpu": [
|
| 184 |
+
"arm64"
|
| 185 |
+
],
|
| 186 |
+
"dev": true,
|
| 187 |
+
"license": "MIT",
|
| 188 |
+
"optional": true,
|
| 189 |
+
"os": [
|
| 190 |
+
"linux"
|
| 191 |
+
],
|
| 192 |
+
"engines": {
|
| 193 |
+
"node": ">=18"
|
| 194 |
+
}
|
| 195 |
+
},
|
| 196 |
+
"node_modules/@esbuild/linux-ia32": {
|
| 197 |
+
"version": "0.27.3",
|
| 198 |
+
"resolved": "https://registry.npmmirror.com/@esbuild/linux-ia32/-/linux-ia32-0.27.3.tgz",
|
| 199 |
+
"integrity": "sha512-yGlQYjdxtLdh0a3jHjuwOrxQjOZYD/C9PfdbgJJF3TIZWnm/tMd/RcNiLngiu4iwcBAOezdnSLAwQDPqTmtTYg==",
|
| 200 |
+
"cpu": [
|
| 201 |
+
"ia32"
|
| 202 |
+
],
|
| 203 |
+
"dev": true,
|
| 204 |
+
"license": "MIT",
|
| 205 |
+
"optional": true,
|
| 206 |
+
"os": [
|
| 207 |
+
"linux"
|
| 208 |
+
],
|
| 209 |
+
"engines": {
|
| 210 |
+
"node": ">=18"
|
| 211 |
+
}
|
| 212 |
+
},
|
| 213 |
+
"node_modules/@esbuild/linux-loong64": {
|
| 214 |
+
"version": "0.27.3",
|
| 215 |
+
"resolved": "https://registry.npmmirror.com/@esbuild/linux-loong64/-/linux-loong64-0.27.3.tgz",
|
| 216 |
+
"integrity": "sha512-WO60Sn8ly3gtzhyjATDgieJNet/KqsDlX5nRC5Y3oTFcS1l0KWba+SEa9Ja1GfDqSF1z6hif/SkpQJbL63cgOA==",
|
| 217 |
+
"cpu": [
|
| 218 |
+
"loong64"
|
| 219 |
+
],
|
| 220 |
+
"dev": true,
|
| 221 |
+
"license": "MIT",
|
| 222 |
+
"optional": true,
|
| 223 |
+
"os": [
|
| 224 |
+
"linux"
|
| 225 |
+
],
|
| 226 |
+
"engines": {
|
| 227 |
+
"node": ">=18"
|
| 228 |
+
}
|
| 229 |
+
},
|
| 230 |
+
"node_modules/@esbuild/linux-mips64el": {
|
| 231 |
+
"version": "0.27.3",
|
| 232 |
+
"resolved": "https://registry.npmmirror.com/@esbuild/linux-mips64el/-/linux-mips64el-0.27.3.tgz",
|
| 233 |
+
"integrity": "sha512-APsymYA6sGcZ4pD6k+UxbDjOFSvPWyZhjaiPyl/f79xKxwTnrn5QUnXR5prvetuaSMsb4jgeHewIDCIWljrSxw==",
|
| 234 |
+
"cpu": [
|
| 235 |
+
"mips64el"
|
| 236 |
+
],
|
| 237 |
+
"dev": true,
|
| 238 |
+
"license": "MIT",
|
| 239 |
+
"optional": true,
|
| 240 |
+
"os": [
|
| 241 |
+
"linux"
|
| 242 |
+
],
|
| 243 |
+
"engines": {
|
| 244 |
+
"node": ">=18"
|
| 245 |
+
}
|
| 246 |
+
},
|
| 247 |
+
"node_modules/@esbuild/linux-ppc64": {
|
| 248 |
+
"version": "0.27.3",
|
| 249 |
+
"resolved": "https://registry.npmmirror.com/@esbuild/linux-ppc64/-/linux-ppc64-0.27.3.tgz",
|
| 250 |
+
"integrity": "sha512-eizBnTeBefojtDb9nSh4vvVQ3V9Qf9Df01PfawPcRzJH4gFSgrObw+LveUyDoKU3kxi5+9RJTCWlj4FjYXVPEA==",
|
| 251 |
+
"cpu": [
|
| 252 |
+
"ppc64"
|
| 253 |
+
],
|
| 254 |
+
"dev": true,
|
| 255 |
+
"license": "MIT",
|
| 256 |
+
"optional": true,
|
| 257 |
+
"os": [
|
| 258 |
+
"linux"
|
| 259 |
+
],
|
| 260 |
+
"engines": {
|
| 261 |
+
"node": ">=18"
|
| 262 |
+
}
|
| 263 |
+
},
|
| 264 |
+
"node_modules/@esbuild/linux-riscv64": {
|
| 265 |
+
"version": "0.27.3",
|
| 266 |
+
"resolved": "https://registry.npmmirror.com/@esbuild/linux-riscv64/-/linux-riscv64-0.27.3.tgz",
|
| 267 |
+
"integrity": "sha512-3Emwh0r5wmfm3ssTWRQSyVhbOHvqegUDRd0WhmXKX2mkHJe1SFCMJhagUleMq+Uci34wLSipf8Lagt4LlpRFWQ==",
|
| 268 |
+
"cpu": [
|
| 269 |
+
"riscv64"
|
| 270 |
+
],
|
| 271 |
+
"dev": true,
|
| 272 |
+
"license": "MIT",
|
| 273 |
+
"optional": true,
|
| 274 |
+
"os": [
|
| 275 |
+
"linux"
|
| 276 |
+
],
|
| 277 |
+
"engines": {
|
| 278 |
+
"node": ">=18"
|
| 279 |
+
}
|
| 280 |
+
},
|
| 281 |
+
"node_modules/@esbuild/linux-s390x": {
|
| 282 |
+
"version": "0.27.3",
|
| 283 |
+
"resolved": "https://registry.npmmirror.com/@esbuild/linux-s390x/-/linux-s390x-0.27.3.tgz",
|
| 284 |
+
"integrity": "sha512-pBHUx9LzXWBc7MFIEEL0yD/ZVtNgLytvx60gES28GcWMqil8ElCYR4kvbV2BDqsHOvVDRrOxGySBM9Fcv744hw==",
|
| 285 |
+
"cpu": [
|
| 286 |
+
"s390x"
|
| 287 |
+
],
|
| 288 |
+
"dev": true,
|
| 289 |
+
"license": "MIT",
|
| 290 |
+
"optional": true,
|
| 291 |
+
"os": [
|
| 292 |
+
"linux"
|
| 293 |
+
],
|
| 294 |
+
"engines": {
|
| 295 |
+
"node": ">=18"
|
| 296 |
+
}
|
| 297 |
+
},
|
| 298 |
+
"node_modules/@esbuild/linux-x64": {
|
| 299 |
+
"version": "0.27.3",
|
| 300 |
+
"resolved": "https://registry.npmmirror.com/@esbuild/linux-x64/-/linux-x64-0.27.3.tgz",
|
| 301 |
+
"integrity": "sha512-Czi8yzXUWIQYAtL/2y6vogER8pvcsOsk5cpwL4Gk5nJqH5UZiVByIY8Eorm5R13gq+DQKYg0+JyQoytLQas4dA==",
|
| 302 |
+
"cpu": [
|
| 303 |
+
"x64"
|
| 304 |
+
],
|
| 305 |
+
"dev": true,
|
| 306 |
+
"license": "MIT",
|
| 307 |
+
"optional": true,
|
| 308 |
+
"os": [
|
| 309 |
+
"linux"
|
| 310 |
+
],
|
| 311 |
+
"engines": {
|
| 312 |
+
"node": ">=18"
|
| 313 |
+
}
|
| 314 |
+
},
|
| 315 |
+
"node_modules/@esbuild/netbsd-arm64": {
|
| 316 |
+
"version": "0.27.3",
|
| 317 |
+
"resolved": "https://registry.npmmirror.com/@esbuild/netbsd-arm64/-/netbsd-arm64-0.27.3.tgz",
|
| 318 |
+
"integrity": "sha512-sDpk0RgmTCR/5HguIZa9n9u+HVKf40fbEUt+iTzSnCaGvY9kFP0YKBWZtJaraonFnqef5SlJ8/TiPAxzyS+UoA==",
|
| 319 |
+
"cpu": [
|
| 320 |
+
"arm64"
|
| 321 |
+
],
|
| 322 |
+
"dev": true,
|
| 323 |
+
"license": "MIT",
|
| 324 |
+
"optional": true,
|
| 325 |
+
"os": [
|
| 326 |
+
"netbsd"
|
| 327 |
+
],
|
| 328 |
+
"engines": {
|
| 329 |
+
"node": ">=18"
|
| 330 |
+
}
|
| 331 |
+
},
|
| 332 |
+
"node_modules/@esbuild/netbsd-x64": {
|
| 333 |
+
"version": "0.27.3",
|
| 334 |
+
"resolved": "https://registry.npmmirror.com/@esbuild/netbsd-x64/-/netbsd-x64-0.27.3.tgz",
|
| 335 |
+
"integrity": "sha512-P14lFKJl/DdaE00LItAukUdZO5iqNH7+PjoBm+fLQjtxfcfFE20Xf5CrLsmZdq5LFFZzb5JMZ9grUwvtVYzjiA==",
|
| 336 |
+
"cpu": [
|
| 337 |
+
"x64"
|
| 338 |
+
],
|
| 339 |
+
"dev": true,
|
| 340 |
+
"license": "MIT",
|
| 341 |
+
"optional": true,
|
| 342 |
+
"os": [
|
| 343 |
+
"netbsd"
|
| 344 |
+
],
|
| 345 |
+
"engines": {
|
| 346 |
+
"node": ">=18"
|
| 347 |
+
}
|
| 348 |
+
},
|
| 349 |
+
"node_modules/@esbuild/openbsd-arm64": {
|
| 350 |
+
"version": "0.27.3",
|
| 351 |
+
"resolved": "https://registry.npmmirror.com/@esbuild/openbsd-arm64/-/openbsd-arm64-0.27.3.tgz",
|
| 352 |
+
"integrity": "sha512-AIcMP77AvirGbRl/UZFTq5hjXK+2wC7qFRGoHSDrZ5v5b8DK/GYpXW3CPRL53NkvDqb9D+alBiC/dV0Fb7eJcw==",
|
| 353 |
+
"cpu": [
|
| 354 |
+
"arm64"
|
| 355 |
+
],
|
| 356 |
+
"dev": true,
|
| 357 |
+
"license": "MIT",
|
| 358 |
+
"optional": true,
|
| 359 |
+
"os": [
|
| 360 |
+
"openbsd"
|
| 361 |
+
],
|
| 362 |
+
"engines": {
|
| 363 |
+
"node": ">=18"
|
| 364 |
+
}
|
| 365 |
+
},
|
| 366 |
+
"node_modules/@esbuild/openbsd-x64": {
|
| 367 |
+
"version": "0.27.3",
|
| 368 |
+
"resolved": "https://registry.npmmirror.com/@esbuild/openbsd-x64/-/openbsd-x64-0.27.3.tgz",
|
| 369 |
+
"integrity": "sha512-DnW2sRrBzA+YnE70LKqnM3P+z8vehfJWHXECbwBmH/CU51z6FiqTQTHFenPlHmo3a8UgpLyH3PT+87OViOh1AQ==",
|
| 370 |
+
"cpu": [
|
| 371 |
+
"x64"
|
| 372 |
+
],
|
| 373 |
+
"dev": true,
|
| 374 |
+
"license": "MIT",
|
| 375 |
+
"optional": true,
|
| 376 |
+
"os": [
|
| 377 |
+
"openbsd"
|
| 378 |
+
],
|
| 379 |
+
"engines": {
|
| 380 |
+
"node": ">=18"
|
| 381 |
+
}
|
| 382 |
+
},
|
| 383 |
+
"node_modules/@esbuild/openharmony-arm64": {
|
| 384 |
+
"version": "0.27.3",
|
| 385 |
+
"resolved": "https://registry.npmmirror.com/@esbuild/openharmony-arm64/-/openharmony-arm64-0.27.3.tgz",
|
| 386 |
+
"integrity": "sha512-NinAEgr/etERPTsZJ7aEZQvvg/A6IsZG/LgZy+81wON2huV7SrK3e63dU0XhyZP4RKGyTm7aOgmQk0bGp0fy2g==",
|
| 387 |
+
"cpu": [
|
| 388 |
+
"arm64"
|
| 389 |
+
],
|
| 390 |
+
"dev": true,
|
| 391 |
+
"license": "MIT",
|
| 392 |
+
"optional": true,
|
| 393 |
+
"os": [
|
| 394 |
+
"openharmony"
|
| 395 |
+
],
|
| 396 |
+
"engines": {
|
| 397 |
+
"node": ">=18"
|
| 398 |
+
}
|
| 399 |
+
},
|
| 400 |
+
"node_modules/@esbuild/sunos-x64": {
|
| 401 |
+
"version": "0.27.3",
|
| 402 |
+
"resolved": "https://registry.npmmirror.com/@esbuild/sunos-x64/-/sunos-x64-0.27.3.tgz",
|
| 403 |
+
"integrity": "sha512-PanZ+nEz+eWoBJ8/f8HKxTTD172SKwdXebZ0ndd953gt1HRBbhMsaNqjTyYLGLPdoWHy4zLU7bDVJztF5f3BHA==",
|
| 404 |
+
"cpu": [
|
| 405 |
+
"x64"
|
| 406 |
+
],
|
| 407 |
+
"dev": true,
|
| 408 |
+
"license": "MIT",
|
| 409 |
+
"optional": true,
|
| 410 |
+
"os": [
|
| 411 |
+
"sunos"
|
| 412 |
+
],
|
| 413 |
+
"engines": {
|
| 414 |
+
"node": ">=18"
|
| 415 |
+
}
|
| 416 |
+
},
|
| 417 |
+
"node_modules/@esbuild/win32-arm64": {
|
| 418 |
+
"version": "0.27.3",
|
| 419 |
+
"resolved": "https://registry.npmmirror.com/@esbuild/win32-arm64/-/win32-arm64-0.27.3.tgz",
|
| 420 |
+
"integrity": "sha512-B2t59lWWYrbRDw/tjiWOuzSsFh1Y/E95ofKz7rIVYSQkUYBjfSgf6oeYPNWHToFRr2zx52JKApIcAS/D5TUBnA==",
|
| 421 |
+
"cpu": [
|
| 422 |
+
"arm64"
|
| 423 |
+
],
|
| 424 |
+
"dev": true,
|
| 425 |
+
"license": "MIT",
|
| 426 |
+
"optional": true,
|
| 427 |
+
"os": [
|
| 428 |
+
"win32"
|
| 429 |
+
],
|
| 430 |
+
"engines": {
|
| 431 |
+
"node": ">=18"
|
| 432 |
+
}
|
| 433 |
+
},
|
| 434 |
+
"node_modules/@esbuild/win32-ia32": {
|
| 435 |
+
"version": "0.27.3",
|
| 436 |
+
"resolved": "https://registry.npmmirror.com/@esbuild/win32-ia32/-/win32-ia32-0.27.3.tgz",
|
| 437 |
+
"integrity": "sha512-QLKSFeXNS8+tHW7tZpMtjlNb7HKau0QDpwm49u0vUp9y1WOF+PEzkU84y9GqYaAVW8aH8f3GcBck26jh54cX4Q==",
|
| 438 |
+
"cpu": [
|
| 439 |
+
"ia32"
|
| 440 |
+
],
|
| 441 |
+
"dev": true,
|
| 442 |
+
"license": "MIT",
|
| 443 |
+
"optional": true,
|
| 444 |
+
"os": [
|
| 445 |
+
"win32"
|
| 446 |
+
],
|
| 447 |
+
"engines": {
|
| 448 |
+
"node": ">=18"
|
| 449 |
+
}
|
| 450 |
+
},
|
| 451 |
+
"node_modules/@esbuild/win32-x64": {
|
| 452 |
+
"version": "0.27.3",
|
| 453 |
+
"resolved": "https://registry.npmmirror.com/@esbuild/win32-x64/-/win32-x64-0.27.3.tgz",
|
| 454 |
+
"integrity": "sha512-4uJGhsxuptu3OcpVAzli+/gWusVGwZZHTlS63hh++ehExkVT8SgiEf7/uC/PclrPPkLhZqGgCTjd0VWLo6xMqA==",
|
| 455 |
+
"cpu": [
|
| 456 |
+
"x64"
|
| 457 |
+
],
|
| 458 |
+
"dev": true,
|
| 459 |
+
"license": "MIT",
|
| 460 |
+
"optional": true,
|
| 461 |
+
"os": [
|
| 462 |
+
"win32"
|
| 463 |
+
],
|
| 464 |
+
"engines": {
|
| 465 |
+
"node": ">=18"
|
| 466 |
+
}
|
| 467 |
+
},
|
| 468 |
+
"node_modules/@types/body-parser": {
|
| 469 |
+
"version": "1.19.6",
|
| 470 |
+
"resolved": "https://registry.npmmirror.com/@types/body-parser/-/body-parser-1.19.6.tgz",
|
| 471 |
+
"integrity": "sha512-HLFeCYgz89uk22N5Qg3dvGvsv46B8GLvKKo1zKG4NybA8U2DiEO3w9lqGg29t/tfLRJpJ6iQxnVw4OnB7MoM9g==",
|
| 472 |
+
"dev": true,
|
| 473 |
+
"license": "MIT",
|
| 474 |
+
"dependencies": {
|
| 475 |
+
"@types/connect": "*",
|
| 476 |
+
"@types/node": "*"
|
| 477 |
+
}
|
| 478 |
+
},
|
| 479 |
+
"node_modules/@types/connect": {
|
| 480 |
+
"version": "3.4.38",
|
| 481 |
+
"resolved": "https://registry.npmmirror.com/@types/connect/-/connect-3.4.38.tgz",
|
| 482 |
+
"integrity": "sha512-K6uROf1LD88uDQqJCktA4yzL1YYAK6NgfsI0v/mTgyPKWsX1CnJ0XPSDhViejru1GcRkLWb8RlzFYJRqGUbaug==",
|
| 483 |
+
"dev": true,
|
| 484 |
+
"license": "MIT",
|
| 485 |
+
"dependencies": {
|
| 486 |
+
"@types/node": "*"
|
| 487 |
+
}
|
| 488 |
+
},
|
| 489 |
+
"node_modules/@types/express": {
|
| 490 |
+
"version": "5.0.6",
|
| 491 |
+
"resolved": "https://registry.npmmirror.com/@types/express/-/express-5.0.6.tgz",
|
| 492 |
+
"integrity": "sha512-sKYVuV7Sv9fbPIt/442koC7+IIwK5olP1KWeD88e/idgoJqDm3JV/YUiPwkoKK92ylff2MGxSz1CSjsXelx0YA==",
|
| 493 |
+
"dev": true,
|
| 494 |
+
"license": "MIT",
|
| 495 |
+
"dependencies": {
|
| 496 |
+
"@types/body-parser": "*",
|
| 497 |
+
"@types/express-serve-static-core": "^5.0.0",
|
| 498 |
+
"@types/serve-static": "^2"
|
| 499 |
+
}
|
| 500 |
+
},
|
| 501 |
+
"node_modules/@types/express-serve-static-core": {
|
| 502 |
+
"version": "5.1.1",
|
| 503 |
+
"resolved": "https://registry.npmmirror.com/@types/express-serve-static-core/-/express-serve-static-core-5.1.1.tgz",
|
| 504 |
+
"integrity": "sha512-v4zIMr/cX7/d2BpAEX3KNKL/JrT1s43s96lLvvdTmza1oEvDudCqK9aF/djc/SWgy8Yh0h30TZx5VpzqFCxk5A==",
|
| 505 |
+
"dev": true,
|
| 506 |
+
"license": "MIT",
|
| 507 |
+
"dependencies": {
|
| 508 |
+
"@types/node": "*",
|
| 509 |
+
"@types/qs": "*",
|
| 510 |
+
"@types/range-parser": "*",
|
| 511 |
+
"@types/send": "*"
|
| 512 |
+
}
|
| 513 |
+
},
|
| 514 |
+
"node_modules/@types/http-errors": {
|
| 515 |
+
"version": "2.0.5",
|
| 516 |
+
"resolved": "https://registry.npmmirror.com/@types/http-errors/-/http-errors-2.0.5.tgz",
|
| 517 |
+
"integrity": "sha512-r8Tayk8HJnX0FztbZN7oVqGccWgw98T/0neJphO91KkmOzug1KkofZURD4UaD5uH8AqcFLfdPErnBod0u71/qg==",
|
| 518 |
+
"dev": true,
|
| 519 |
+
"license": "MIT"
|
| 520 |
+
},
|
| 521 |
+
"node_modules/@types/node": {
|
| 522 |
+
"version": "22.19.13",
|
| 523 |
+
"resolved": "https://registry.npmmirror.com/@types/node/-/node-22.19.13.tgz",
|
| 524 |
+
"integrity": "sha512-akNQMv0wW5uyRpD2v2IEyRSZiR+BeGuoB6L310EgGObO44HSMNT8z1xzio28V8qOrgYaopIDNA18YgdXd+qTiw==",
|
| 525 |
+
"dev": true,
|
| 526 |
+
"license": "MIT",
|
| 527 |
+
"dependencies": {
|
| 528 |
+
"undici-types": "~6.21.0"
|
| 529 |
+
}
|
| 530 |
+
},
|
| 531 |
+
"node_modules/@types/qs": {
|
| 532 |
+
"version": "6.14.0",
|
| 533 |
+
"resolved": "https://registry.npmmirror.com/@types/qs/-/qs-6.14.0.tgz",
|
| 534 |
+
"integrity": "sha512-eOunJqu0K1923aExK6y8p6fsihYEn/BYuQ4g0CxAAgFc4b/ZLN4CrsRZ55srTdqoiLzU2B2evC+apEIxprEzkQ==",
|
| 535 |
+
"dev": true,
|
| 536 |
+
"license": "MIT"
|
| 537 |
+
},
|
| 538 |
+
"node_modules/@types/range-parser": {
|
| 539 |
+
"version": "1.2.7",
|
| 540 |
+
"resolved": "https://registry.npmmirror.com/@types/range-parser/-/range-parser-1.2.7.tgz",
|
| 541 |
+
"integrity": "sha512-hKormJbkJqzQGhziax5PItDUTMAM9uE2XXQmM37dyd4hVM+5aVl7oVxMVUiVQn2oCQFN/LKCZdvSM0pFRqbSmQ==",
|
| 542 |
+
"dev": true,
|
| 543 |
+
"license": "MIT"
|
| 544 |
+
},
|
| 545 |
+
"node_modules/@types/send": {
|
| 546 |
+
"version": "1.2.1",
|
| 547 |
+
"resolved": "https://registry.npmmirror.com/@types/send/-/send-1.2.1.tgz",
|
| 548 |
+
"integrity": "sha512-arsCikDvlU99zl1g69TcAB3mzZPpxgw0UQnaHeC1Nwb015xp8bknZv5rIfri9xTOcMuaVgvabfIRA7PSZVuZIQ==",
|
| 549 |
+
"dev": true,
|
| 550 |
+
"license": "MIT",
|
| 551 |
+
"dependencies": {
|
| 552 |
+
"@types/node": "*"
|
| 553 |
+
}
|
| 554 |
+
},
|
| 555 |
+
"node_modules/@types/serve-static": {
|
| 556 |
+
"version": "2.2.0",
|
| 557 |
+
"resolved": "https://registry.npmmirror.com/@types/serve-static/-/serve-static-2.2.0.tgz",
|
| 558 |
+
"integrity": "sha512-8mam4H1NHLtu7nmtalF7eyBH14QyOASmcxHhSfEoRyr0nP/YdoesEtU+uSRvMe96TW/HPTtkoKqQLl53N7UXMQ==",
|
| 559 |
+
"dev": true,
|
| 560 |
+
"license": "MIT",
|
| 561 |
+
"dependencies": {
|
| 562 |
+
"@types/http-errors": "*",
|
| 563 |
+
"@types/node": "*"
|
| 564 |
+
}
|
| 565 |
+
},
|
| 566 |
+
"node_modules/@types/uuid": {
|
| 567 |
+
"version": "10.0.0",
|
| 568 |
+
"resolved": "https://registry.npmmirror.com/@types/uuid/-/uuid-10.0.0.tgz",
|
| 569 |
+
"integrity": "sha512-7gqG38EyHgyP1S+7+xomFtL+ZNHcKv6DwNaCZmJmo1vgMugyF3TCnXVg4t1uk89mLNwnLtnY3TpOpCOyp1/xHQ==",
|
| 570 |
+
"dev": true,
|
| 571 |
+
"license": "MIT"
|
| 572 |
+
},
|
| 573 |
+
"node_modules/accepts": {
|
| 574 |
+
"version": "2.0.0",
|
| 575 |
+
"resolved": "https://registry.npmmirror.com/accepts/-/accepts-2.0.0.tgz",
|
| 576 |
+
"integrity": "sha512-5cvg6CtKwfgdmVqY1WIiXKc3Q1bkRqGLi+2W/6ao+6Y7gu/RCwRuAhGEzh5B4KlszSuTLgZYuqFqo5bImjNKng==",
|
| 577 |
+
"license": "MIT",
|
| 578 |
+
"dependencies": {
|
| 579 |
+
"mime-types": "^3.0.0",
|
| 580 |
+
"negotiator": "^1.0.0"
|
| 581 |
+
},
|
| 582 |
+
"engines": {
|
| 583 |
+
"node": ">= 0.6"
|
| 584 |
+
}
|
| 585 |
+
},
|
| 586 |
+
"node_modules/bmp-js": {
|
| 587 |
+
"version": "0.1.0",
|
| 588 |
+
"resolved": "https://registry.npmmirror.com/bmp-js/-/bmp-js-0.1.0.tgz",
|
| 589 |
+
"integrity": "sha512-vHdS19CnY3hwiNdkaqk93DvjVLfbEcI8mys4UjuWrlX1haDmroo8o4xCzh4wD6DGV6HxRCyauwhHRqMTfERtjw==",
|
| 590 |
+
"license": "MIT"
|
| 591 |
+
},
|
| 592 |
+
"node_modules/body-parser": {
|
| 593 |
+
"version": "2.2.2",
|
| 594 |
+
"resolved": "https://registry.npmmirror.com/body-parser/-/body-parser-2.2.2.tgz",
|
| 595 |
+
"integrity": "sha512-oP5VkATKlNwcgvxi0vM0p/D3n2C3EReYVX+DNYs5TjZFn/oQt2j+4sVJtSMr18pdRr8wjTcBl6LoV+FUwzPmNA==",
|
| 596 |
+
"license": "MIT",
|
| 597 |
+
"dependencies": {
|
| 598 |
+
"bytes": "^3.1.2",
|
| 599 |
+
"content-type": "^1.0.5",
|
| 600 |
+
"debug": "^4.4.3",
|
| 601 |
+
"http-errors": "^2.0.0",
|
| 602 |
+
"iconv-lite": "^0.7.0",
|
| 603 |
+
"on-finished": "^2.4.1",
|
| 604 |
+
"qs": "^6.14.1",
|
| 605 |
+
"raw-body": "^3.0.1",
|
| 606 |
+
"type-is": "^2.0.1"
|
| 607 |
+
},
|
| 608 |
+
"engines": {
|
| 609 |
+
"node": ">=18"
|
| 610 |
+
},
|
| 611 |
+
"funding": {
|
| 612 |
+
"type": "opencollective",
|
| 613 |
+
"url": "https://opencollective.com/express"
|
| 614 |
+
}
|
| 615 |
+
},
|
| 616 |
+
"node_modules/bytes": {
|
| 617 |
+
"version": "3.1.2",
|
| 618 |
+
"resolved": "https://registry.npmmirror.com/bytes/-/bytes-3.1.2.tgz",
|
| 619 |
+
"integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==",
|
| 620 |
+
"license": "MIT",
|
| 621 |
+
"engines": {
|
| 622 |
+
"node": ">= 0.8"
|
| 623 |
+
}
|
| 624 |
+
},
|
| 625 |
+
"node_modules/call-bind-apply-helpers": {
|
| 626 |
+
"version": "1.0.2",
|
| 627 |
+
"resolved": "https://registry.npmmirror.com/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz",
|
| 628 |
+
"integrity": "sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==",
|
| 629 |
+
"license": "MIT",
|
| 630 |
+
"dependencies": {
|
| 631 |
+
"es-errors": "^1.3.0",
|
| 632 |
+
"function-bind": "^1.1.2"
|
| 633 |
+
},
|
| 634 |
+
"engines": {
|
| 635 |
+
"node": ">= 0.4"
|
| 636 |
+
}
|
| 637 |
+
},
|
| 638 |
+
"node_modules/call-bound": {
|
| 639 |
+
"version": "1.0.4",
|
| 640 |
+
"resolved": "https://registry.npmmirror.com/call-bound/-/call-bound-1.0.4.tgz",
|
| 641 |
+
"integrity": "sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg==",
|
| 642 |
+
"license": "MIT",
|
| 643 |
+
"dependencies": {
|
| 644 |
+
"call-bind-apply-helpers": "^1.0.2",
|
| 645 |
+
"get-intrinsic": "^1.3.0"
|
| 646 |
+
},
|
| 647 |
+
"engines": {
|
| 648 |
+
"node": ">= 0.4"
|
| 649 |
+
},
|
| 650 |
+
"funding": {
|
| 651 |
+
"url": "https://github.com/sponsors/ljharb"
|
| 652 |
+
}
|
| 653 |
+
},
|
| 654 |
+
"node_modules/content-disposition": {
|
| 655 |
+
"version": "1.0.1",
|
| 656 |
+
"resolved": "https://registry.npmmirror.com/content-disposition/-/content-disposition-1.0.1.tgz",
|
| 657 |
+
"integrity": "sha512-oIXISMynqSqm241k6kcQ5UwttDILMK4BiurCfGEREw6+X9jkkpEe5T9FZaApyLGGOnFuyMWZpdolTXMtvEJ08Q==",
|
| 658 |
+
"license": "MIT",
|
| 659 |
+
"engines": {
|
| 660 |
+
"node": ">=18"
|
| 661 |
+
},
|
| 662 |
+
"funding": {
|
| 663 |
+
"type": "opencollective",
|
| 664 |
+
"url": "https://opencollective.com/express"
|
| 665 |
+
}
|
| 666 |
+
},
|
| 667 |
+
"node_modules/content-type": {
|
| 668 |
+
"version": "1.0.5",
|
| 669 |
+
"resolved": "https://registry.npmmirror.com/content-type/-/content-type-1.0.5.tgz",
|
| 670 |
+
"integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==",
|
| 671 |
+
"license": "MIT",
|
| 672 |
+
"engines": {
|
| 673 |
+
"node": ">= 0.6"
|
| 674 |
+
}
|
| 675 |
+
},
|
| 676 |
+
"node_modules/cookie": {
|
| 677 |
+
"version": "0.7.2",
|
| 678 |
+
"resolved": "https://registry.npmmirror.com/cookie/-/cookie-0.7.2.tgz",
|
| 679 |
+
"integrity": "sha512-yki5XnKuf750l50uGTllt6kKILY4nQ1eNIQatoXEByZ5dWgnKqbnqmTrBE5B4N7lrMJKQ2ytWMiTO2o0v6Ew/w==",
|
| 680 |
+
"license": "MIT",
|
| 681 |
+
"engines": {
|
| 682 |
+
"node": ">= 0.6"
|
| 683 |
+
}
|
| 684 |
+
},
|
| 685 |
+
"node_modules/cookie-signature": {
|
| 686 |
+
"version": "1.2.2",
|
| 687 |
+
"resolved": "https://registry.npmmirror.com/cookie-signature/-/cookie-signature-1.2.2.tgz",
|
| 688 |
+
"integrity": "sha512-D76uU73ulSXrD1UXF4KE2TMxVVwhsnCgfAyTg9k8P6KGZjlXKrOLe4dJQKI3Bxi5wjesZoFXJWElNWBjPZMbhg==",
|
| 689 |
+
"license": "MIT",
|
| 690 |
+
"engines": {
|
| 691 |
+
"node": ">=6.6.0"
|
| 692 |
+
}
|
| 693 |
+
},
|
| 694 |
+
"node_modules/debug": {
|
| 695 |
+
"version": "4.4.3",
|
| 696 |
+
"resolved": "https://registry.npmmirror.com/debug/-/debug-4.4.3.tgz",
|
| 697 |
+
"integrity": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==",
|
| 698 |
+
"license": "MIT",
|
| 699 |
+
"dependencies": {
|
| 700 |
+
"ms": "^2.1.3"
|
| 701 |
+
},
|
| 702 |
+
"engines": {
|
| 703 |
+
"node": ">=6.0"
|
| 704 |
+
},
|
| 705 |
+
"peerDependenciesMeta": {
|
| 706 |
+
"supports-color": {
|
| 707 |
+
"optional": true
|
| 708 |
+
}
|
| 709 |
+
}
|
| 710 |
+
},
|
| 711 |
+
"node_modules/depd": {
|
| 712 |
+
"version": "2.0.0",
|
| 713 |
+
"resolved": "https://registry.npmmirror.com/depd/-/depd-2.0.0.tgz",
|
| 714 |
+
"integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==",
|
| 715 |
+
"license": "MIT",
|
| 716 |
+
"engines": {
|
| 717 |
+
"node": ">= 0.8"
|
| 718 |
+
}
|
| 719 |
+
},
|
| 720 |
+
"node_modules/dotenv": {
|
| 721 |
+
"version": "16.6.1",
|
| 722 |
+
"resolved": "https://registry.npmmirror.com/dotenv/-/dotenv-16.6.1.tgz",
|
| 723 |
+
"integrity": "sha512-uBq4egWHTcTt33a72vpSG0z3HnPuIl6NqYcTrKEg2azoEyl2hpW0zqlxysq2pK9HlDIHyHyakeYaYnSAwd8bow==",
|
| 724 |
+
"license": "BSD-2-Clause",
|
| 725 |
+
"engines": {
|
| 726 |
+
"node": ">=12"
|
| 727 |
+
},
|
| 728 |
+
"funding": {
|
| 729 |
+
"url": "https://dotenvx.com"
|
| 730 |
+
}
|
| 731 |
+
},
|
| 732 |
+
"node_modules/dunder-proto": {
|
| 733 |
+
"version": "1.0.1",
|
| 734 |
+
"resolved": "https://registry.npmmirror.com/dunder-proto/-/dunder-proto-1.0.1.tgz",
|
| 735 |
+
"integrity": "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==",
|
| 736 |
+
"license": "MIT",
|
| 737 |
+
"dependencies": {
|
| 738 |
+
"call-bind-apply-helpers": "^1.0.1",
|
| 739 |
+
"es-errors": "^1.3.0",
|
| 740 |
+
"gopd": "^1.2.0"
|
| 741 |
+
},
|
| 742 |
+
"engines": {
|
| 743 |
+
"node": ">= 0.4"
|
| 744 |
+
}
|
| 745 |
+
},
|
| 746 |
+
"node_modules/ee-first": {
|
| 747 |
+
"version": "1.1.1",
|
| 748 |
+
"resolved": "https://registry.npmmirror.com/ee-first/-/ee-first-1.1.1.tgz",
|
| 749 |
+
"integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==",
|
| 750 |
+
"license": "MIT"
|
| 751 |
+
},
|
| 752 |
+
"node_modules/encodeurl": {
|
| 753 |
+
"version": "2.0.0",
|
| 754 |
+
"resolved": "https://registry.npmmirror.com/encodeurl/-/encodeurl-2.0.0.tgz",
|
| 755 |
+
"integrity": "sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg==",
|
| 756 |
+
"license": "MIT",
|
| 757 |
+
"engines": {
|
| 758 |
+
"node": ">= 0.8"
|
| 759 |
+
}
|
| 760 |
+
},
|
| 761 |
+
"node_modules/es-define-property": {
|
| 762 |
+
"version": "1.0.1",
|
| 763 |
+
"resolved": "https://registry.npmmirror.com/es-define-property/-/es-define-property-1.0.1.tgz",
|
| 764 |
+
"integrity": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==",
|
| 765 |
+
"license": "MIT",
|
| 766 |
+
"engines": {
|
| 767 |
+
"node": ">= 0.4"
|
| 768 |
+
}
|
| 769 |
+
},
|
| 770 |
+
"node_modules/es-errors": {
|
| 771 |
+
"version": "1.3.0",
|
| 772 |
+
"resolved": "https://registry.npmmirror.com/es-errors/-/es-errors-1.3.0.tgz",
|
| 773 |
+
"integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==",
|
| 774 |
+
"license": "MIT",
|
| 775 |
+
"engines": {
|
| 776 |
+
"node": ">= 0.4"
|
| 777 |
+
}
|
| 778 |
+
},
|
| 779 |
+
"node_modules/es-object-atoms": {
|
| 780 |
+
"version": "1.1.1",
|
| 781 |
+
"resolved": "https://registry.npmmirror.com/es-object-atoms/-/es-object-atoms-1.1.1.tgz",
|
| 782 |
+
"integrity": "sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==",
|
| 783 |
+
"license": "MIT",
|
| 784 |
+
"dependencies": {
|
| 785 |
+
"es-errors": "^1.3.0"
|
| 786 |
+
},
|
| 787 |
+
"engines": {
|
| 788 |
+
"node": ">= 0.4"
|
| 789 |
+
}
|
| 790 |
+
},
|
| 791 |
+
"node_modules/esbuild": {
|
| 792 |
+
"version": "0.27.3",
|
| 793 |
+
"resolved": "https://registry.npmmirror.com/esbuild/-/esbuild-0.27.3.tgz",
|
| 794 |
+
"integrity": "sha512-8VwMnyGCONIs6cWue2IdpHxHnAjzxnw2Zr7MkVxB2vjmQ2ivqGFb4LEG3SMnv0Gb2F/G/2yA8zUaiL1gywDCCg==",
|
| 795 |
+
"dev": true,
|
| 796 |
+
"hasInstallScript": true,
|
| 797 |
+
"license": "MIT",
|
| 798 |
+
"bin": {
|
| 799 |
+
"esbuild": "bin/esbuild"
|
| 800 |
+
},
|
| 801 |
+
"engines": {
|
| 802 |
+
"node": ">=18"
|
| 803 |
+
},
|
| 804 |
+
"optionalDependencies": {
|
| 805 |
+
"@esbuild/aix-ppc64": "0.27.3",
|
| 806 |
+
"@esbuild/android-arm": "0.27.3",
|
| 807 |
+
"@esbuild/android-arm64": "0.27.3",
|
| 808 |
+
"@esbuild/android-x64": "0.27.3",
|
| 809 |
+
"@esbuild/darwin-arm64": "0.27.3",
|
| 810 |
+
"@esbuild/darwin-x64": "0.27.3",
|
| 811 |
+
"@esbuild/freebsd-arm64": "0.27.3",
|
| 812 |
+
"@esbuild/freebsd-x64": "0.27.3",
|
| 813 |
+
"@esbuild/linux-arm": "0.27.3",
|
| 814 |
+
"@esbuild/linux-arm64": "0.27.3",
|
| 815 |
+
"@esbuild/linux-ia32": "0.27.3",
|
| 816 |
+
"@esbuild/linux-loong64": "0.27.3",
|
| 817 |
+
"@esbuild/linux-mips64el": "0.27.3",
|
| 818 |
+
"@esbuild/linux-ppc64": "0.27.3",
|
| 819 |
+
"@esbuild/linux-riscv64": "0.27.3",
|
| 820 |
+
"@esbuild/linux-s390x": "0.27.3",
|
| 821 |
+
"@esbuild/linux-x64": "0.27.3",
|
| 822 |
+
"@esbuild/netbsd-arm64": "0.27.3",
|
| 823 |
+
"@esbuild/netbsd-x64": "0.27.3",
|
| 824 |
+
"@esbuild/openbsd-arm64": "0.27.3",
|
| 825 |
+
"@esbuild/openbsd-x64": "0.27.3",
|
| 826 |
+
"@esbuild/openharmony-arm64": "0.27.3",
|
| 827 |
+
"@esbuild/sunos-x64": "0.27.3",
|
| 828 |
+
"@esbuild/win32-arm64": "0.27.3",
|
| 829 |
+
"@esbuild/win32-ia32": "0.27.3",
|
| 830 |
+
"@esbuild/win32-x64": "0.27.3"
|
| 831 |
+
}
|
| 832 |
+
},
|
| 833 |
+
"node_modules/escape-html": {
|
| 834 |
+
"version": "1.0.3",
|
| 835 |
+
"resolved": "https://registry.npmmirror.com/escape-html/-/escape-html-1.0.3.tgz",
|
| 836 |
+
"integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==",
|
| 837 |
+
"license": "MIT"
|
| 838 |
+
},
|
| 839 |
+
"node_modules/etag": {
|
| 840 |
+
"version": "1.8.1",
|
| 841 |
+
"resolved": "https://registry.npmmirror.com/etag/-/etag-1.8.1.tgz",
|
| 842 |
+
"integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==",
|
| 843 |
+
"license": "MIT",
|
| 844 |
+
"engines": {
|
| 845 |
+
"node": ">= 0.6"
|
| 846 |
+
}
|
| 847 |
+
},
|
| 848 |
+
"node_modules/eventsource-parser": {
|
| 849 |
+
"version": "3.0.6",
|
| 850 |
+
"resolved": "https://registry.npmmirror.com/eventsource-parser/-/eventsource-parser-3.0.6.tgz",
|
| 851 |
+
"integrity": "sha512-Vo1ab+QXPzZ4tCa8SwIHJFaSzy4R6SHf7BY79rFBDf0idraZWAkYrDjDj8uWaSm3S2TK+hJ7/t1CEmZ7jXw+pg==",
|
| 852 |
+
"license": "MIT",
|
| 853 |
+
"engines": {
|
| 854 |
+
"node": ">=18.0.0"
|
| 855 |
+
}
|
| 856 |
+
},
|
| 857 |
+
"node_modules/express": {
|
| 858 |
+
"version": "5.2.1",
|
| 859 |
+
"resolved": "https://registry.npmmirror.com/express/-/express-5.2.1.tgz",
|
| 860 |
+
"integrity": "sha512-hIS4idWWai69NezIdRt2xFVofaF4j+6INOpJlVOLDO8zXGpUVEVzIYk12UUi2JzjEzWL3IOAxcTubgz9Po0yXw==",
|
| 861 |
+
"license": "MIT",
|
| 862 |
+
"dependencies": {
|
| 863 |
+
"accepts": "^2.0.0",
|
| 864 |
+
"body-parser": "^2.2.1",
|
| 865 |
+
"content-disposition": "^1.0.0",
|
| 866 |
+
"content-type": "^1.0.5",
|
| 867 |
+
"cookie": "^0.7.1",
|
| 868 |
+
"cookie-signature": "^1.2.1",
|
| 869 |
+
"debug": "^4.4.0",
|
| 870 |
+
"depd": "^2.0.0",
|
| 871 |
+
"encodeurl": "^2.0.0",
|
| 872 |
+
"escape-html": "^1.0.3",
|
| 873 |
+
"etag": "^1.8.1",
|
| 874 |
+
"finalhandler": "^2.1.0",
|
| 875 |
+
"fresh": "^2.0.0",
|
| 876 |
+
"http-errors": "^2.0.0",
|
| 877 |
+
"merge-descriptors": "^2.0.0",
|
| 878 |
+
"mime-types": "^3.0.0",
|
| 879 |
+
"on-finished": "^2.4.1",
|
| 880 |
+
"once": "^1.4.0",
|
| 881 |
+
"parseurl": "^1.3.3",
|
| 882 |
+
"proxy-addr": "^2.0.7",
|
| 883 |
+
"qs": "^6.14.0",
|
| 884 |
+
"range-parser": "^1.2.1",
|
| 885 |
+
"router": "^2.2.0",
|
| 886 |
+
"send": "^1.1.0",
|
| 887 |
+
"serve-static": "^2.2.0",
|
| 888 |
+
"statuses": "^2.0.1",
|
| 889 |
+
"type-is": "^2.0.1",
|
| 890 |
+
"vary": "^1.1.2"
|
| 891 |
+
},
|
| 892 |
+
"engines": {
|
| 893 |
+
"node": ">= 18"
|
| 894 |
+
},
|
| 895 |
+
"funding": {
|
| 896 |
+
"type": "opencollective",
|
| 897 |
+
"url": "https://opencollective.com/express"
|
| 898 |
+
}
|
| 899 |
+
},
|
| 900 |
+
"node_modules/finalhandler": {
|
| 901 |
+
"version": "2.1.1",
|
| 902 |
+
"resolved": "https://registry.npmmirror.com/finalhandler/-/finalhandler-2.1.1.tgz",
|
| 903 |
+
"integrity": "sha512-S8KoZgRZN+a5rNwqTxlZZePjT/4cnm0ROV70LedRHZ0p8u9fRID0hJUZQpkKLzro8LfmC8sx23bY6tVNxv8pQA==",
|
| 904 |
+
"license": "MIT",
|
| 905 |
+
"dependencies": {
|
| 906 |
+
"debug": "^4.4.0",
|
| 907 |
+
"encodeurl": "^2.0.0",
|
| 908 |
+
"escape-html": "^1.0.3",
|
| 909 |
+
"on-finished": "^2.4.1",
|
| 910 |
+
"parseurl": "^1.3.3",
|
| 911 |
+
"statuses": "^2.0.1"
|
| 912 |
+
},
|
| 913 |
+
"engines": {
|
| 914 |
+
"node": ">= 18.0.0"
|
| 915 |
+
},
|
| 916 |
+
"funding": {
|
| 917 |
+
"type": "opencollective",
|
| 918 |
+
"url": "https://opencollective.com/express"
|
| 919 |
+
}
|
| 920 |
+
},
|
| 921 |
+
"node_modules/forwarded": {
|
| 922 |
+
"version": "0.2.0",
|
| 923 |
+
"resolved": "https://registry.npmmirror.com/forwarded/-/forwarded-0.2.0.tgz",
|
| 924 |
+
"integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==",
|
| 925 |
+
"license": "MIT",
|
| 926 |
+
"engines": {
|
| 927 |
+
"node": ">= 0.6"
|
| 928 |
+
}
|
| 929 |
+
},
|
| 930 |
+
"node_modules/fresh": {
|
| 931 |
+
"version": "2.0.0",
|
| 932 |
+
"resolved": "https://registry.npmmirror.com/fresh/-/fresh-2.0.0.tgz",
|
| 933 |
+
"integrity": "sha512-Rx/WycZ60HOaqLKAi6cHRKKI7zxWbJ31MhntmtwMoaTeF7XFH9hhBp8vITaMidfljRQ6eYWCKkaTK+ykVJHP2A==",
|
| 934 |
+
"license": "MIT",
|
| 935 |
+
"engines": {
|
| 936 |
+
"node": ">= 0.8"
|
| 937 |
+
}
|
| 938 |
+
},
|
| 939 |
+
"node_modules/fsevents": {
|
| 940 |
+
"version": "2.3.3",
|
| 941 |
+
"resolved": "https://registry.npmmirror.com/fsevents/-/fsevents-2.3.3.tgz",
|
| 942 |
+
"integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==",
|
| 943 |
+
"dev": true,
|
| 944 |
+
"hasInstallScript": true,
|
| 945 |
+
"license": "MIT",
|
| 946 |
+
"optional": true,
|
| 947 |
+
"os": [
|
| 948 |
+
"darwin"
|
| 949 |
+
],
|
| 950 |
+
"engines": {
|
| 951 |
+
"node": "^8.16.0 || ^10.6.0 || >=11.0.0"
|
| 952 |
+
}
|
| 953 |
+
},
|
| 954 |
+
"node_modules/function-bind": {
|
| 955 |
+
"version": "1.1.2",
|
| 956 |
+
"resolved": "https://registry.npmmirror.com/function-bind/-/function-bind-1.1.2.tgz",
|
| 957 |
+
"integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==",
|
| 958 |
+
"license": "MIT",
|
| 959 |
+
"funding": {
|
| 960 |
+
"url": "https://github.com/sponsors/ljharb"
|
| 961 |
+
}
|
| 962 |
+
},
|
| 963 |
+
"node_modules/get-intrinsic": {
|
| 964 |
+
"version": "1.3.0",
|
| 965 |
+
"resolved": "https://registry.npmmirror.com/get-intrinsic/-/get-intrinsic-1.3.0.tgz",
|
| 966 |
+
"integrity": "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==",
|
| 967 |
+
"license": "MIT",
|
| 968 |
+
"dependencies": {
|
| 969 |
+
"call-bind-apply-helpers": "^1.0.2",
|
| 970 |
+
"es-define-property": "^1.0.1",
|
| 971 |
+
"es-errors": "^1.3.0",
|
| 972 |
+
"es-object-atoms": "^1.1.1",
|
| 973 |
+
"function-bind": "^1.1.2",
|
| 974 |
+
"get-proto": "^1.0.1",
|
| 975 |
+
"gopd": "^1.2.0",
|
| 976 |
+
"has-symbols": "^1.1.0",
|
| 977 |
+
"hasown": "^2.0.2",
|
| 978 |
+
"math-intrinsics": "^1.1.0"
|
| 979 |
+
},
|
| 980 |
+
"engines": {
|
| 981 |
+
"node": ">= 0.4"
|
| 982 |
+
},
|
| 983 |
+
"funding": {
|
| 984 |
+
"url": "https://github.com/sponsors/ljharb"
|
| 985 |
+
}
|
| 986 |
+
},
|
| 987 |
+
"node_modules/get-proto": {
|
| 988 |
+
"version": "1.0.1",
|
| 989 |
+
"resolved": "https://registry.npmmirror.com/get-proto/-/get-proto-1.0.1.tgz",
|
| 990 |
+
"integrity": "sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==",
|
| 991 |
+
"license": "MIT",
|
| 992 |
+
"dependencies": {
|
| 993 |
+
"dunder-proto": "^1.0.1",
|
| 994 |
+
"es-object-atoms": "^1.0.0"
|
| 995 |
+
},
|
| 996 |
+
"engines": {
|
| 997 |
+
"node": ">= 0.4"
|
| 998 |
+
}
|
| 999 |
+
},
|
| 1000 |
+
"node_modules/get-tsconfig": {
|
| 1001 |
+
"version": "4.13.6",
|
| 1002 |
+
"resolved": "https://registry.npmmirror.com/get-tsconfig/-/get-tsconfig-4.13.6.tgz",
|
| 1003 |
+
"integrity": "sha512-shZT/QMiSHc/YBLxxOkMtgSid5HFoauqCE3/exfsEcwg1WkeqjG+V40yBbBrsD+jW2HDXcs28xOfcbm2jI8Ddw==",
|
| 1004 |
+
"dev": true,
|
| 1005 |
+
"license": "MIT",
|
| 1006 |
+
"dependencies": {
|
| 1007 |
+
"resolve-pkg-maps": "^1.0.0"
|
| 1008 |
+
},
|
| 1009 |
+
"funding": {
|
| 1010 |
+
"url": "https://github.com/privatenumber/get-tsconfig?sponsor=1"
|
| 1011 |
+
}
|
| 1012 |
+
},
|
| 1013 |
+
"node_modules/gopd": {
|
| 1014 |
+
"version": "1.2.0",
|
| 1015 |
+
"resolved": "https://registry.npmmirror.com/gopd/-/gopd-1.2.0.tgz",
|
| 1016 |
+
"integrity": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==",
|
| 1017 |
+
"license": "MIT",
|
| 1018 |
+
"engines": {
|
| 1019 |
+
"node": ">= 0.4"
|
| 1020 |
+
},
|
| 1021 |
+
"funding": {
|
| 1022 |
+
"url": "https://github.com/sponsors/ljharb"
|
| 1023 |
+
}
|
| 1024 |
+
},
|
| 1025 |
+
"node_modules/has-symbols": {
|
| 1026 |
+
"version": "1.1.0",
|
| 1027 |
+
"resolved": "https://registry.npmmirror.com/has-symbols/-/has-symbols-1.1.0.tgz",
|
| 1028 |
+
"integrity": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==",
|
| 1029 |
+
"license": "MIT",
|
| 1030 |
+
"engines": {
|
| 1031 |
+
"node": ">= 0.4"
|
| 1032 |
+
},
|
| 1033 |
+
"funding": {
|
| 1034 |
+
"url": "https://github.com/sponsors/ljharb"
|
| 1035 |
+
}
|
| 1036 |
+
},
|
| 1037 |
+
"node_modules/hasown": {
|
| 1038 |
+
"version": "2.0.2",
|
| 1039 |
+
"resolved": "https://registry.npmmirror.com/hasown/-/hasown-2.0.2.tgz",
|
| 1040 |
+
"integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==",
|
| 1041 |
+
"license": "MIT",
|
| 1042 |
+
"dependencies": {
|
| 1043 |
+
"function-bind": "^1.1.2"
|
| 1044 |
+
},
|
| 1045 |
+
"engines": {
|
| 1046 |
+
"node": ">= 0.4"
|
| 1047 |
+
}
|
| 1048 |
+
},
|
| 1049 |
+
"node_modules/http-errors": {
|
| 1050 |
+
"version": "2.0.1",
|
| 1051 |
+
"resolved": "https://registry.npmmirror.com/http-errors/-/http-errors-2.0.1.tgz",
|
| 1052 |
+
"integrity": "sha512-4FbRdAX+bSdmo4AUFuS0WNiPz8NgFt+r8ThgNWmlrjQjt1Q7ZR9+zTlce2859x4KSXrwIsaeTqDoKQmtP8pLmQ==",
|
| 1053 |
+
"license": "MIT",
|
| 1054 |
+
"dependencies": {
|
| 1055 |
+
"depd": "~2.0.0",
|
| 1056 |
+
"inherits": "~2.0.4",
|
| 1057 |
+
"setprototypeof": "~1.2.0",
|
| 1058 |
+
"statuses": "~2.0.2",
|
| 1059 |
+
"toidentifier": "~1.0.1"
|
| 1060 |
+
},
|
| 1061 |
+
"engines": {
|
| 1062 |
+
"node": ">= 0.8"
|
| 1063 |
+
},
|
| 1064 |
+
"funding": {
|
| 1065 |
+
"type": "opencollective",
|
| 1066 |
+
"url": "https://opencollective.com/express"
|
| 1067 |
+
}
|
| 1068 |
+
},
|
| 1069 |
+
"node_modules/iconv-lite": {
|
| 1070 |
+
"version": "0.7.2",
|
| 1071 |
+
"resolved": "https://registry.npmmirror.com/iconv-lite/-/iconv-lite-0.7.2.tgz",
|
| 1072 |
+
"integrity": "sha512-im9DjEDQ55s9fL4EYzOAv0yMqmMBSZp6G0VvFyTMPKWxiSBHUj9NW/qqLmXUwXrrM7AvqSlTCfvqRb0cM8yYqw==",
|
| 1073 |
+
"license": "MIT",
|
| 1074 |
+
"dependencies": {
|
| 1075 |
+
"safer-buffer": ">= 2.1.2 < 3.0.0"
|
| 1076 |
+
},
|
| 1077 |
+
"engines": {
|
| 1078 |
+
"node": ">=0.10.0"
|
| 1079 |
+
},
|
| 1080 |
+
"funding": {
|
| 1081 |
+
"type": "opencollective",
|
| 1082 |
+
"url": "https://opencollective.com/express"
|
| 1083 |
+
}
|
| 1084 |
+
},
|
| 1085 |
+
"node_modules/idb-keyval": {
|
| 1086 |
+
"version": "6.2.2",
|
| 1087 |
+
"resolved": "https://registry.npmmirror.com/idb-keyval/-/idb-keyval-6.2.2.tgz",
|
| 1088 |
+
"integrity": "sha512-yjD9nARJ/jb1g+CvD0tlhUHOrJ9Sy0P8T9MF3YaLlHnSRpwPfpTX0XIvpmw3gAJUmEu3FiICLBDPXVwyEvrleg==",
|
| 1089 |
+
"license": "Apache-2.0"
|
| 1090 |
+
},
|
| 1091 |
+
"node_modules/inherits": {
|
| 1092 |
+
"version": "2.0.4",
|
| 1093 |
+
"resolved": "https://registry.npmmirror.com/inherits/-/inherits-2.0.4.tgz",
|
| 1094 |
+
"integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==",
|
| 1095 |
+
"license": "ISC"
|
| 1096 |
+
},
|
| 1097 |
+
"node_modules/ipaddr.js": {
|
| 1098 |
+
"version": "1.9.1",
|
| 1099 |
+
"resolved": "https://registry.npmmirror.com/ipaddr.js/-/ipaddr.js-1.9.1.tgz",
|
| 1100 |
+
"integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==",
|
| 1101 |
+
"license": "MIT",
|
| 1102 |
+
"engines": {
|
| 1103 |
+
"node": ">= 0.10"
|
| 1104 |
+
}
|
| 1105 |
+
},
|
| 1106 |
+
"node_modules/is-promise": {
|
| 1107 |
+
"version": "4.0.0",
|
| 1108 |
+
"resolved": "https://registry.npmmirror.com/is-promise/-/is-promise-4.0.0.tgz",
|
| 1109 |
+
"integrity": "sha512-hvpoI6korhJMnej285dSg6nu1+e6uxs7zG3BYAm5byqDsgJNWwxzM6z6iZiAgQR4TJ30JmBTOwqZUw3WlyH3AQ==",
|
| 1110 |
+
"license": "MIT"
|
| 1111 |
+
},
|
| 1112 |
+
"node_modules/is-url": {
|
| 1113 |
+
"version": "1.2.4",
|
| 1114 |
+
"resolved": "https://registry.npmmirror.com/is-url/-/is-url-1.2.4.tgz",
|
| 1115 |
+
"integrity": "sha512-ITvGim8FhRiYe4IQ5uHSkj7pVaPDrCTkNd3yq3cV7iZAcJdHTUMPMEHcqSOy9xZ9qFenQCvi+2wjH9a1nXqHww==",
|
| 1116 |
+
"license": "MIT"
|
| 1117 |
+
},
|
| 1118 |
+
"node_modules/math-intrinsics": {
|
| 1119 |
+
"version": "1.1.0",
|
| 1120 |
+
"resolved": "https://registry.npmmirror.com/math-intrinsics/-/math-intrinsics-1.1.0.tgz",
|
| 1121 |
+
"integrity": "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==",
|
| 1122 |
+
"license": "MIT",
|
| 1123 |
+
"engines": {
|
| 1124 |
+
"node": ">= 0.4"
|
| 1125 |
+
}
|
| 1126 |
+
},
|
| 1127 |
+
"node_modules/media-typer": {
|
| 1128 |
+
"version": "1.1.0",
|
| 1129 |
+
"resolved": "https://registry.npmmirror.com/media-typer/-/media-typer-1.1.0.tgz",
|
| 1130 |
+
"integrity": "sha512-aisnrDP4GNe06UcKFnV5bfMNPBUw4jsLGaWwWfnH3v02GnBuXX2MCVn5RbrWo0j3pczUilYblq7fQ7Nw2t5XKw==",
|
| 1131 |
+
"license": "MIT",
|
| 1132 |
+
"engines": {
|
| 1133 |
+
"node": ">= 0.8"
|
| 1134 |
+
}
|
| 1135 |
+
},
|
| 1136 |
+
"node_modules/merge-descriptors": {
|
| 1137 |
+
"version": "2.0.0",
|
| 1138 |
+
"resolved": "https://registry.npmmirror.com/merge-descriptors/-/merge-descriptors-2.0.0.tgz",
|
| 1139 |
+
"integrity": "sha512-Snk314V5ayFLhp3fkUREub6WtjBfPdCPY1Ln8/8munuLuiYhsABgBVWsozAG+MWMbVEvcdcpbi9R7ww22l9Q3g==",
|
| 1140 |
+
"license": "MIT",
|
| 1141 |
+
"engines": {
|
| 1142 |
+
"node": ">=18"
|
| 1143 |
+
},
|
| 1144 |
+
"funding": {
|
| 1145 |
+
"url": "https://github.com/sponsors/sindresorhus"
|
| 1146 |
+
}
|
| 1147 |
+
},
|
| 1148 |
+
"node_modules/mime-db": {
|
| 1149 |
+
"version": "1.54.0",
|
| 1150 |
+
"resolved": "https://registry.npmmirror.com/mime-db/-/mime-db-1.54.0.tgz",
|
| 1151 |
+
"integrity": "sha512-aU5EJuIN2WDemCcAp2vFBfp/m4EAhWJnUNSSw0ixs7/kXbd6Pg64EmwJkNdFhB8aWt1sH2CTXrLxo/iAGV3oPQ==",
|
| 1152 |
+
"license": "MIT",
|
| 1153 |
+
"engines": {
|
| 1154 |
+
"node": ">= 0.6"
|
| 1155 |
+
}
|
| 1156 |
+
},
|
| 1157 |
+
"node_modules/mime-types": {
|
| 1158 |
+
"version": "3.0.2",
|
| 1159 |
+
"resolved": "https://registry.npmmirror.com/mime-types/-/mime-types-3.0.2.tgz",
|
| 1160 |
+
"integrity": "sha512-Lbgzdk0h4juoQ9fCKXW4by0UJqj+nOOrI9MJ1sSj4nI8aI2eo1qmvQEie4VD1glsS250n15LsWsYtCugiStS5A==",
|
| 1161 |
+
"license": "MIT",
|
| 1162 |
+
"dependencies": {
|
| 1163 |
+
"mime-db": "^1.54.0"
|
| 1164 |
+
},
|
| 1165 |
+
"engines": {
|
| 1166 |
+
"node": ">=18"
|
| 1167 |
+
},
|
| 1168 |
+
"funding": {
|
| 1169 |
+
"type": "opencollective",
|
| 1170 |
+
"url": "https://opencollective.com/express"
|
| 1171 |
+
}
|
| 1172 |
+
},
|
| 1173 |
+
"node_modules/ms": {
|
| 1174 |
+
"version": "2.1.3",
|
| 1175 |
+
"resolved": "https://registry.npmmirror.com/ms/-/ms-2.1.3.tgz",
|
| 1176 |
+
"integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==",
|
| 1177 |
+
"license": "MIT"
|
| 1178 |
+
},
|
| 1179 |
+
"node_modules/negotiator": {
|
| 1180 |
+
"version": "1.0.0",
|
| 1181 |
+
"resolved": "https://registry.npmmirror.com/negotiator/-/negotiator-1.0.0.tgz",
|
| 1182 |
+
"integrity": "sha512-8Ofs/AUQh8MaEcrlq5xOX0CQ9ypTF5dl78mjlMNfOK08fzpgTHQRQPBxcPlEtIw0yRpws+Zo/3r+5WRby7u3Gg==",
|
| 1183 |
+
"license": "MIT",
|
| 1184 |
+
"engines": {
|
| 1185 |
+
"node": ">= 0.6"
|
| 1186 |
+
}
|
| 1187 |
+
},
|
| 1188 |
+
"node_modules/node-fetch": {
|
| 1189 |
+
"version": "2.7.0",
|
| 1190 |
+
"resolved": "https://registry.npmmirror.com/node-fetch/-/node-fetch-2.7.0.tgz",
|
| 1191 |
+
"integrity": "sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==",
|
| 1192 |
+
"license": "MIT",
|
| 1193 |
+
"dependencies": {
|
| 1194 |
+
"whatwg-url": "^5.0.0"
|
| 1195 |
+
},
|
| 1196 |
+
"engines": {
|
| 1197 |
+
"node": "4.x || >=6.0.0"
|
| 1198 |
+
},
|
| 1199 |
+
"peerDependencies": {
|
| 1200 |
+
"encoding": "^0.1.0"
|
| 1201 |
+
},
|
| 1202 |
+
"peerDependenciesMeta": {
|
| 1203 |
+
"encoding": {
|
| 1204 |
+
"optional": true
|
| 1205 |
+
}
|
| 1206 |
+
}
|
| 1207 |
+
},
|
| 1208 |
+
"node_modules/object-inspect": {
|
| 1209 |
+
"version": "1.13.4",
|
| 1210 |
+
"resolved": "https://registry.npmmirror.com/object-inspect/-/object-inspect-1.13.4.tgz",
|
| 1211 |
+
"integrity": "sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew==",
|
| 1212 |
+
"license": "MIT",
|
| 1213 |
+
"engines": {
|
| 1214 |
+
"node": ">= 0.4"
|
| 1215 |
+
},
|
| 1216 |
+
"funding": {
|
| 1217 |
+
"url": "https://github.com/sponsors/ljharb"
|
| 1218 |
+
}
|
| 1219 |
+
},
|
| 1220 |
+
"node_modules/on-finished": {
|
| 1221 |
+
"version": "2.4.1",
|
| 1222 |
+
"resolved": "https://registry.npmmirror.com/on-finished/-/on-finished-2.4.1.tgz",
|
| 1223 |
+
"integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==",
|
| 1224 |
+
"license": "MIT",
|
| 1225 |
+
"dependencies": {
|
| 1226 |
+
"ee-first": "1.1.1"
|
| 1227 |
+
},
|
| 1228 |
+
"engines": {
|
| 1229 |
+
"node": ">= 0.8"
|
| 1230 |
+
}
|
| 1231 |
+
},
|
| 1232 |
+
"node_modules/once": {
|
| 1233 |
+
"version": "1.4.0",
|
| 1234 |
+
"resolved": "https://registry.npmmirror.com/once/-/once-1.4.0.tgz",
|
| 1235 |
+
"integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==",
|
| 1236 |
+
"license": "ISC",
|
| 1237 |
+
"dependencies": {
|
| 1238 |
+
"wrappy": "1"
|
| 1239 |
+
}
|
| 1240 |
+
},
|
| 1241 |
+
"node_modules/opencollective-postinstall": {
|
| 1242 |
+
"version": "2.0.3",
|
| 1243 |
+
"resolved": "https://registry.npmmirror.com/opencollective-postinstall/-/opencollective-postinstall-2.0.3.tgz",
|
| 1244 |
+
"integrity": "sha512-8AV/sCtuzUeTo8gQK5qDZzARrulB3egtLzFgteqB2tcT4Mw7B8Kt7JcDHmltjz6FOAHsvTevk70gZEbhM4ZS9Q==",
|
| 1245 |
+
"license": "MIT",
|
| 1246 |
+
"bin": {
|
| 1247 |
+
"opencollective-postinstall": "index.js"
|
| 1248 |
+
}
|
| 1249 |
+
},
|
| 1250 |
+
"node_modules/parseurl": {
|
| 1251 |
+
"version": "1.3.3",
|
| 1252 |
+
"resolved": "https://registry.npmmirror.com/parseurl/-/parseurl-1.3.3.tgz",
|
| 1253 |
+
"integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==",
|
| 1254 |
+
"license": "MIT",
|
| 1255 |
+
"engines": {
|
| 1256 |
+
"node": ">= 0.8"
|
| 1257 |
+
}
|
| 1258 |
+
},
|
| 1259 |
+
"node_modules/path-to-regexp": {
|
| 1260 |
+
"version": "8.3.0",
|
| 1261 |
+
"resolved": "https://registry.npmmirror.com/path-to-regexp/-/path-to-regexp-8.3.0.tgz",
|
| 1262 |
+
"integrity": "sha512-7jdwVIRtsP8MYpdXSwOS0YdD0Du+qOoF/AEPIt88PcCFrZCzx41oxku1jD88hZBwbNUIEfpqvuhjFaMAqMTWnA==",
|
| 1263 |
+
"license": "MIT",
|
| 1264 |
+
"funding": {
|
| 1265 |
+
"type": "opencollective",
|
| 1266 |
+
"url": "https://opencollective.com/express"
|
| 1267 |
+
}
|
| 1268 |
+
},
|
| 1269 |
+
"node_modules/proxy-addr": {
|
| 1270 |
+
"version": "2.0.7",
|
| 1271 |
+
"resolved": "https://registry.npmmirror.com/proxy-addr/-/proxy-addr-2.0.7.tgz",
|
| 1272 |
+
"integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==",
|
| 1273 |
+
"license": "MIT",
|
| 1274 |
+
"dependencies": {
|
| 1275 |
+
"forwarded": "0.2.0",
|
| 1276 |
+
"ipaddr.js": "1.9.1"
|
| 1277 |
+
},
|
| 1278 |
+
"engines": {
|
| 1279 |
+
"node": ">= 0.10"
|
| 1280 |
+
}
|
| 1281 |
+
},
|
| 1282 |
+
"node_modules/qs": {
|
| 1283 |
+
"version": "6.15.0",
|
| 1284 |
+
"resolved": "https://registry.npmmirror.com/qs/-/qs-6.15.0.tgz",
|
| 1285 |
+
"integrity": "sha512-mAZTtNCeetKMH+pSjrb76NAM8V9a05I9aBZOHztWy/UqcJdQYNsf59vrRKWnojAT9Y+GbIvoTBC++CPHqpDBhQ==",
|
| 1286 |
+
"license": "BSD-3-Clause",
|
| 1287 |
+
"dependencies": {
|
| 1288 |
+
"side-channel": "^1.1.0"
|
| 1289 |
+
},
|
| 1290 |
+
"engines": {
|
| 1291 |
+
"node": ">=0.6"
|
| 1292 |
+
},
|
| 1293 |
+
"funding": {
|
| 1294 |
+
"url": "https://github.com/sponsors/ljharb"
|
| 1295 |
+
}
|
| 1296 |
+
},
|
| 1297 |
+
"node_modules/range-parser": {
|
| 1298 |
+
"version": "1.2.1",
|
| 1299 |
+
"resolved": "https://registry.npmmirror.com/range-parser/-/range-parser-1.2.1.tgz",
|
| 1300 |
+
"integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==",
|
| 1301 |
+
"license": "MIT",
|
| 1302 |
+
"engines": {
|
| 1303 |
+
"node": ">= 0.6"
|
| 1304 |
+
}
|
| 1305 |
+
},
|
| 1306 |
+
"node_modules/raw-body": {
|
| 1307 |
+
"version": "3.0.2",
|
| 1308 |
+
"resolved": "https://registry.npmmirror.com/raw-body/-/raw-body-3.0.2.tgz",
|
| 1309 |
+
"integrity": "sha512-K5zQjDllxWkf7Z5xJdV0/B0WTNqx6vxG70zJE4N0kBs4LovmEYWJzQGxC9bS9RAKu3bgM40lrd5zoLJ12MQ5BA==",
|
| 1310 |
+
"license": "MIT",
|
| 1311 |
+
"dependencies": {
|
| 1312 |
+
"bytes": "~3.1.2",
|
| 1313 |
+
"http-errors": "~2.0.1",
|
| 1314 |
+
"iconv-lite": "~0.7.0",
|
| 1315 |
+
"unpipe": "~1.0.0"
|
| 1316 |
+
},
|
| 1317 |
+
"engines": {
|
| 1318 |
+
"node": ">= 0.10"
|
| 1319 |
+
}
|
| 1320 |
+
},
|
| 1321 |
+
"node_modules/regenerator-runtime": {
|
| 1322 |
+
"version": "0.13.11",
|
| 1323 |
+
"resolved": "https://registry.npmmirror.com/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz",
|
| 1324 |
+
"integrity": "sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==",
|
| 1325 |
+
"license": "MIT"
|
| 1326 |
+
},
|
| 1327 |
+
"node_modules/resolve-pkg-maps": {
|
| 1328 |
+
"version": "1.0.0",
|
| 1329 |
+
"resolved": "https://registry.npmmirror.com/resolve-pkg-maps/-/resolve-pkg-maps-1.0.0.tgz",
|
| 1330 |
+
"integrity": "sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==",
|
| 1331 |
+
"dev": true,
|
| 1332 |
+
"license": "MIT",
|
| 1333 |
+
"funding": {
|
| 1334 |
+
"url": "https://github.com/privatenumber/resolve-pkg-maps?sponsor=1"
|
| 1335 |
+
}
|
| 1336 |
+
},
|
| 1337 |
+
"node_modules/router": {
|
| 1338 |
+
"version": "2.2.0",
|
| 1339 |
+
"resolved": "https://registry.npmmirror.com/router/-/router-2.2.0.tgz",
|
| 1340 |
+
"integrity": "sha512-nLTrUKm2UyiL7rlhapu/Zl45FwNgkZGaCpZbIHajDYgwlJCOzLSk+cIPAnsEqV955GjILJnKbdQC1nVPz+gAYQ==",
|
| 1341 |
+
"license": "MIT",
|
| 1342 |
+
"dependencies": {
|
| 1343 |
+
"debug": "^4.4.0",
|
| 1344 |
+
"depd": "^2.0.0",
|
| 1345 |
+
"is-promise": "^4.0.0",
|
| 1346 |
+
"parseurl": "^1.3.3",
|
| 1347 |
+
"path-to-regexp": "^8.0.0"
|
| 1348 |
+
},
|
| 1349 |
+
"engines": {
|
| 1350 |
+
"node": ">= 18"
|
| 1351 |
+
}
|
| 1352 |
+
},
|
| 1353 |
+
"node_modules/safer-buffer": {
|
| 1354 |
+
"version": "2.1.2",
|
| 1355 |
+
"resolved": "https://registry.npmmirror.com/safer-buffer/-/safer-buffer-2.1.2.tgz",
|
| 1356 |
+
"integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==",
|
| 1357 |
+
"license": "MIT"
|
| 1358 |
+
},
|
| 1359 |
+
"node_modules/send": {
|
| 1360 |
+
"version": "1.2.1",
|
| 1361 |
+
"resolved": "https://registry.npmmirror.com/send/-/send-1.2.1.tgz",
|
| 1362 |
+
"integrity": "sha512-1gnZf7DFcoIcajTjTwjwuDjzuz4PPcY2StKPlsGAQ1+YH20IRVrBaXSWmdjowTJ6u8Rc01PoYOGHXfP1mYcZNQ==",
|
| 1363 |
+
"license": "MIT",
|
| 1364 |
+
"dependencies": {
|
| 1365 |
+
"debug": "^4.4.3",
|
| 1366 |
+
"encodeurl": "^2.0.0",
|
| 1367 |
+
"escape-html": "^1.0.3",
|
| 1368 |
+
"etag": "^1.8.1",
|
| 1369 |
+
"fresh": "^2.0.0",
|
| 1370 |
+
"http-errors": "^2.0.1",
|
| 1371 |
+
"mime-types": "^3.0.2",
|
| 1372 |
+
"ms": "^2.1.3",
|
| 1373 |
+
"on-finished": "^2.4.1",
|
| 1374 |
+
"range-parser": "^1.2.1",
|
| 1375 |
+
"statuses": "^2.0.2"
|
| 1376 |
+
},
|
| 1377 |
+
"engines": {
|
| 1378 |
+
"node": ">= 18"
|
| 1379 |
+
},
|
| 1380 |
+
"funding": {
|
| 1381 |
+
"type": "opencollective",
|
| 1382 |
+
"url": "https://opencollective.com/express"
|
| 1383 |
+
}
|
| 1384 |
+
},
|
| 1385 |
+
"node_modules/serve-static": {
|
| 1386 |
+
"version": "2.2.1",
|
| 1387 |
+
"resolved": "https://registry.npmmirror.com/serve-static/-/serve-static-2.2.1.tgz",
|
| 1388 |
+
"integrity": "sha512-xRXBn0pPqQTVQiC8wyQrKs2MOlX24zQ0POGaj0kultvoOCstBQM5yvOhAVSUwOMjQtTvsPWoNCHfPGwaaQJhTw==",
|
| 1389 |
+
"license": "MIT",
|
| 1390 |
+
"dependencies": {
|
| 1391 |
+
"encodeurl": "^2.0.0",
|
| 1392 |
+
"escape-html": "^1.0.3",
|
| 1393 |
+
"parseurl": "^1.3.3",
|
| 1394 |
+
"send": "^1.2.0"
|
| 1395 |
+
},
|
| 1396 |
+
"engines": {
|
| 1397 |
+
"node": ">= 18"
|
| 1398 |
+
},
|
| 1399 |
+
"funding": {
|
| 1400 |
+
"type": "opencollective",
|
| 1401 |
+
"url": "https://opencollective.com/express"
|
| 1402 |
+
}
|
| 1403 |
+
},
|
| 1404 |
+
"node_modules/setprototypeof": {
|
| 1405 |
+
"version": "1.2.0",
|
| 1406 |
+
"resolved": "https://registry.npmmirror.com/setprototypeof/-/setprototypeof-1.2.0.tgz",
|
| 1407 |
+
"integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==",
|
| 1408 |
+
"license": "ISC"
|
| 1409 |
+
},
|
| 1410 |
+
"node_modules/side-channel": {
|
| 1411 |
+
"version": "1.1.0",
|
| 1412 |
+
"resolved": "https://registry.npmmirror.com/side-channel/-/side-channel-1.1.0.tgz",
|
| 1413 |
+
"integrity": "sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==",
|
| 1414 |
+
"license": "MIT",
|
| 1415 |
+
"dependencies": {
|
| 1416 |
+
"es-errors": "^1.3.0",
|
| 1417 |
+
"object-inspect": "^1.13.3",
|
| 1418 |
+
"side-channel-list": "^1.0.0",
|
| 1419 |
+
"side-channel-map": "^1.0.1",
|
| 1420 |
+
"side-channel-weakmap": "^1.0.2"
|
| 1421 |
+
},
|
| 1422 |
+
"engines": {
|
| 1423 |
+
"node": ">= 0.4"
|
| 1424 |
+
},
|
| 1425 |
+
"funding": {
|
| 1426 |
+
"url": "https://github.com/sponsors/ljharb"
|
| 1427 |
+
}
|
| 1428 |
+
},
|
| 1429 |
+
"node_modules/side-channel-list": {
|
| 1430 |
+
"version": "1.0.0",
|
| 1431 |
+
"resolved": "https://registry.npmmirror.com/side-channel-list/-/side-channel-list-1.0.0.tgz",
|
| 1432 |
+
"integrity": "sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA==",
|
| 1433 |
+
"license": "MIT",
|
| 1434 |
+
"dependencies": {
|
| 1435 |
+
"es-errors": "^1.3.0",
|
| 1436 |
+
"object-inspect": "^1.13.3"
|
| 1437 |
+
},
|
| 1438 |
+
"engines": {
|
| 1439 |
+
"node": ">= 0.4"
|
| 1440 |
+
},
|
| 1441 |
+
"funding": {
|
| 1442 |
+
"url": "https://github.com/sponsors/ljharb"
|
| 1443 |
+
}
|
| 1444 |
+
},
|
| 1445 |
+
"node_modules/side-channel-map": {
|
| 1446 |
+
"version": "1.0.1",
|
| 1447 |
+
"resolved": "https://registry.npmmirror.com/side-channel-map/-/side-channel-map-1.0.1.tgz",
|
| 1448 |
+
"integrity": "sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==",
|
| 1449 |
+
"license": "MIT",
|
| 1450 |
+
"dependencies": {
|
| 1451 |
+
"call-bound": "^1.0.2",
|
| 1452 |
+
"es-errors": "^1.3.0",
|
| 1453 |
+
"get-intrinsic": "^1.2.5",
|
| 1454 |
+
"object-inspect": "^1.13.3"
|
| 1455 |
+
},
|
| 1456 |
+
"engines": {
|
| 1457 |
+
"node": ">= 0.4"
|
| 1458 |
+
},
|
| 1459 |
+
"funding": {
|
| 1460 |
+
"url": "https://github.com/sponsors/ljharb"
|
| 1461 |
+
}
|
| 1462 |
+
},
|
| 1463 |
+
"node_modules/side-channel-weakmap": {
|
| 1464 |
+
"version": "1.0.2",
|
| 1465 |
+
"resolved": "https://registry.npmmirror.com/side-channel-weakmap/-/side-channel-weakmap-1.0.2.tgz",
|
| 1466 |
+
"integrity": "sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==",
|
| 1467 |
+
"license": "MIT",
|
| 1468 |
+
"dependencies": {
|
| 1469 |
+
"call-bound": "^1.0.2",
|
| 1470 |
+
"es-errors": "^1.3.0",
|
| 1471 |
+
"get-intrinsic": "^1.2.5",
|
| 1472 |
+
"object-inspect": "^1.13.3",
|
| 1473 |
+
"side-channel-map": "^1.0.1"
|
| 1474 |
+
},
|
| 1475 |
+
"engines": {
|
| 1476 |
+
"node": ">= 0.4"
|
| 1477 |
+
},
|
| 1478 |
+
"funding": {
|
| 1479 |
+
"url": "https://github.com/sponsors/ljharb"
|
| 1480 |
+
}
|
| 1481 |
+
},
|
| 1482 |
+
"node_modules/statuses": {
|
| 1483 |
+
"version": "2.0.2",
|
| 1484 |
+
"resolved": "https://registry.npmmirror.com/statuses/-/statuses-2.0.2.tgz",
|
| 1485 |
+
"integrity": "sha512-DvEy55V3DB7uknRo+4iOGT5fP1slR8wQohVdknigZPMpMstaKJQWhwiYBACJE3Ul2pTnATihhBYnRhZQHGBiRw==",
|
| 1486 |
+
"license": "MIT",
|
| 1487 |
+
"engines": {
|
| 1488 |
+
"node": ">= 0.8"
|
| 1489 |
+
}
|
| 1490 |
+
},
|
| 1491 |
+
"node_modules/tesseract.js": {
|
| 1492 |
+
"version": "7.0.0",
|
| 1493 |
+
"resolved": "https://registry.npmmirror.com/tesseract.js/-/tesseract.js-7.0.0.tgz",
|
| 1494 |
+
"integrity": "sha512-exPBkd+z+wM1BuMkx/Bjv43OeLBxhL5kKWsz/9JY+DXcXdiBjiAch0V49QR3oAJqCaL5qURE0vx9Eo+G5YE7mA==",
|
| 1495 |
+
"hasInstallScript": true,
|
| 1496 |
+
"license": "Apache-2.0",
|
| 1497 |
+
"dependencies": {
|
| 1498 |
+
"bmp-js": "^0.1.0",
|
| 1499 |
+
"idb-keyval": "^6.2.0",
|
| 1500 |
+
"is-url": "^1.2.4",
|
| 1501 |
+
"node-fetch": "^2.6.9",
|
| 1502 |
+
"opencollective-postinstall": "^2.0.3",
|
| 1503 |
+
"regenerator-runtime": "^0.13.3",
|
| 1504 |
+
"tesseract.js-core": "^7.0.0",
|
| 1505 |
+
"wasm-feature-detect": "^1.8.0",
|
| 1506 |
+
"zlibjs": "^0.3.1"
|
| 1507 |
+
}
|
| 1508 |
+
},
|
| 1509 |
+
"node_modules/tesseract.js-core": {
|
| 1510 |
+
"version": "7.0.0",
|
| 1511 |
+
"resolved": "https://registry.npmmirror.com/tesseract.js-core/-/tesseract.js-core-7.0.0.tgz",
|
| 1512 |
+
"integrity": "sha512-WnNH518NzmbSq9zgTPeoF8c+xmilS8rFIl1YKbk/ptuuc7p6cLNELNuPAzcmsYw450ca6bLa8j3t0VAtq435Vw==",
|
| 1513 |
+
"license": "Apache-2.0"
|
| 1514 |
+
},
|
| 1515 |
+
"node_modules/toidentifier": {
|
| 1516 |
+
"version": "1.0.1",
|
| 1517 |
+
"resolved": "https://registry.npmmirror.com/toidentifier/-/toidentifier-1.0.1.tgz",
|
| 1518 |
+
"integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==",
|
| 1519 |
+
"license": "MIT",
|
| 1520 |
+
"engines": {
|
| 1521 |
+
"node": ">=0.6"
|
| 1522 |
+
}
|
| 1523 |
+
},
|
| 1524 |
+
"node_modules/tr46": {
|
| 1525 |
+
"version": "0.0.3",
|
| 1526 |
+
"resolved": "https://registry.npmmirror.com/tr46/-/tr46-0.0.3.tgz",
|
| 1527 |
+
"integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==",
|
| 1528 |
+
"license": "MIT"
|
| 1529 |
+
},
|
| 1530 |
+
"node_modules/tsx": {
|
| 1531 |
+
"version": "4.21.0",
|
| 1532 |
+
"resolved": "https://registry.npmmirror.com/tsx/-/tsx-4.21.0.tgz",
|
| 1533 |
+
"integrity": "sha512-5C1sg4USs1lfG0GFb2RLXsdpXqBSEhAaA/0kPL01wxzpMqLILNxIxIOKiILz+cdg/pLnOUxFYOR5yhHU666wbw==",
|
| 1534 |
+
"dev": true,
|
| 1535 |
+
"license": "MIT",
|
| 1536 |
+
"dependencies": {
|
| 1537 |
+
"esbuild": "~0.27.0",
|
| 1538 |
+
"get-tsconfig": "^4.7.5"
|
| 1539 |
+
},
|
| 1540 |
+
"bin": {
|
| 1541 |
+
"tsx": "dist/cli.mjs"
|
| 1542 |
+
},
|
| 1543 |
+
"engines": {
|
| 1544 |
+
"node": ">=18.0.0"
|
| 1545 |
+
},
|
| 1546 |
+
"optionalDependencies": {
|
| 1547 |
+
"fsevents": "~2.3.3"
|
| 1548 |
+
}
|
| 1549 |
+
},
|
| 1550 |
+
"node_modules/type-is": {
|
| 1551 |
+
"version": "2.0.1",
|
| 1552 |
+
"resolved": "https://registry.npmmirror.com/type-is/-/type-is-2.0.1.tgz",
|
| 1553 |
+
"integrity": "sha512-OZs6gsjF4vMp32qrCbiVSkrFmXtG/AZhY3t0iAMrMBiAZyV9oALtXO8hsrHbMXF9x6L3grlFuwW2oAz7cav+Gw==",
|
| 1554 |
+
"license": "MIT",
|
| 1555 |
+
"dependencies": {
|
| 1556 |
+
"content-type": "^1.0.5",
|
| 1557 |
+
"media-typer": "^1.1.0",
|
| 1558 |
+
"mime-types": "^3.0.0"
|
| 1559 |
+
},
|
| 1560 |
+
"engines": {
|
| 1561 |
+
"node": ">= 0.6"
|
| 1562 |
+
}
|
| 1563 |
+
},
|
| 1564 |
+
"node_modules/typescript": {
|
| 1565 |
+
"version": "5.9.3",
|
| 1566 |
+
"resolved": "https://registry.npmmirror.com/typescript/-/typescript-5.9.3.tgz",
|
| 1567 |
+
"integrity": "sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==",
|
| 1568 |
+
"dev": true,
|
| 1569 |
+
"license": "Apache-2.0",
|
| 1570 |
+
"bin": {
|
| 1571 |
+
"tsc": "bin/tsc",
|
| 1572 |
+
"tsserver": "bin/tsserver"
|
| 1573 |
+
},
|
| 1574 |
+
"engines": {
|
| 1575 |
+
"node": ">=14.17"
|
| 1576 |
+
}
|
| 1577 |
+
},
|
| 1578 |
+
"node_modules/undici-types": {
|
| 1579 |
+
"version": "6.21.0",
|
| 1580 |
+
"resolved": "https://registry.npmmirror.com/undici-types/-/undici-types-6.21.0.tgz",
|
| 1581 |
+
"integrity": "sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ==",
|
| 1582 |
+
"dev": true,
|
| 1583 |
+
"license": "MIT"
|
| 1584 |
+
},
|
| 1585 |
+
"node_modules/unpipe": {
|
| 1586 |
+
"version": "1.0.0",
|
| 1587 |
+
"resolved": "https://registry.npmmirror.com/unpipe/-/unpipe-1.0.0.tgz",
|
| 1588 |
+
"integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==",
|
| 1589 |
+
"license": "MIT",
|
| 1590 |
+
"engines": {
|
| 1591 |
+
"node": ">= 0.8"
|
| 1592 |
+
}
|
| 1593 |
+
},
|
| 1594 |
+
"node_modules/uuid": {
|
| 1595 |
+
"version": "11.1.0",
|
| 1596 |
+
"resolved": "https://registry.npmmirror.com/uuid/-/uuid-11.1.0.tgz",
|
| 1597 |
+
"integrity": "sha512-0/A9rDy9P7cJ+8w1c9WD9V//9Wj15Ce2MPz8Ri6032usz+NfePxx5AcN3bN+r6ZL6jEo066/yNYB3tn4pQEx+A==",
|
| 1598 |
+
"funding": [
|
| 1599 |
+
"https://github.com/sponsors/broofa",
|
| 1600 |
+
"https://github.com/sponsors/ctavan"
|
| 1601 |
+
],
|
| 1602 |
+
"license": "MIT",
|
| 1603 |
+
"bin": {
|
| 1604 |
+
"uuid": "dist/esm/bin/uuid"
|
| 1605 |
+
}
|
| 1606 |
+
},
|
| 1607 |
+
"node_modules/vary": {
|
| 1608 |
+
"version": "1.1.2",
|
| 1609 |
+
"resolved": "https://registry.npmmirror.com/vary/-/vary-1.1.2.tgz",
|
| 1610 |
+
"integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==",
|
| 1611 |
+
"license": "MIT",
|
| 1612 |
+
"engines": {
|
| 1613 |
+
"node": ">= 0.8"
|
| 1614 |
+
}
|
| 1615 |
+
},
|
| 1616 |
+
"node_modules/wasm-feature-detect": {
|
| 1617 |
+
"version": "1.8.0",
|
| 1618 |
+
"resolved": "https://registry.npmmirror.com/wasm-feature-detect/-/wasm-feature-detect-1.8.0.tgz",
|
| 1619 |
+
"integrity": "sha512-zksaLKM2fVlnB5jQQDqKXXwYHLQUVH9es+5TOOHwGOVJOCeRBCiPjwSg+3tN2AdTCzjgli4jijCH290kXb/zWQ==",
|
| 1620 |
+
"license": "Apache-2.0"
|
| 1621 |
+
},
|
| 1622 |
+
"node_modules/webidl-conversions": {
|
| 1623 |
+
"version": "3.0.1",
|
| 1624 |
+
"resolved": "https://registry.npmmirror.com/webidl-conversions/-/webidl-conversions-3.0.1.tgz",
|
| 1625 |
+
"integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==",
|
| 1626 |
+
"license": "BSD-2-Clause"
|
| 1627 |
+
},
|
| 1628 |
+
"node_modules/whatwg-url": {
|
| 1629 |
+
"version": "5.0.0",
|
| 1630 |
+
"resolved": "https://registry.npmmirror.com/whatwg-url/-/whatwg-url-5.0.0.tgz",
|
| 1631 |
+
"integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==",
|
| 1632 |
+
"license": "MIT",
|
| 1633 |
+
"dependencies": {
|
| 1634 |
+
"tr46": "~0.0.3",
|
| 1635 |
+
"webidl-conversions": "^3.0.0"
|
| 1636 |
+
}
|
| 1637 |
+
},
|
| 1638 |
+
"node_modules/wrappy": {
|
| 1639 |
+
"version": "1.0.2",
|
| 1640 |
+
"resolved": "https://registry.npmmirror.com/wrappy/-/wrappy-1.0.2.tgz",
|
| 1641 |
+
"integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==",
|
| 1642 |
+
"license": "ISC"
|
| 1643 |
+
},
|
| 1644 |
+
"node_modules/yaml": {
|
| 1645 |
+
"version": "2.8.2",
|
| 1646 |
+
"resolved": "https://registry.npmmirror.com/yaml/-/yaml-2.8.2.tgz",
|
| 1647 |
+
"integrity": "sha512-mplynKqc1C2hTVYxd0PU2xQAc22TI1vShAYGksCCfxbn/dFwnHTNi1bvYsBTkhdUNtGIf5xNOg938rrSSYvS9A==",
|
| 1648 |
+
"license": "ISC",
|
| 1649 |
+
"bin": {
|
| 1650 |
+
"yaml": "bin.mjs"
|
| 1651 |
+
},
|
| 1652 |
+
"engines": {
|
| 1653 |
+
"node": ">= 14.6"
|
| 1654 |
+
},
|
| 1655 |
+
"funding": {
|
| 1656 |
+
"url": "https://github.com/sponsors/eemeli"
|
| 1657 |
+
}
|
| 1658 |
+
},
|
| 1659 |
+
"node_modules/zlibjs": {
|
| 1660 |
+
"version": "0.3.1",
|
| 1661 |
+
"resolved": "https://registry.npmmirror.com/zlibjs/-/zlibjs-0.3.1.tgz",
|
| 1662 |
+
"integrity": "sha512-+J9RrgTKOmlxFSDHo0pI1xM6BLVUv+o0ZT9ANtCxGkjIVCCUdx9alUF8Gm+dGLKbkkkidWIHFDZHDMpfITt4+w==",
|
| 1663 |
+
"license": "MIT",
|
| 1664 |
+
"engines": {
|
| 1665 |
+
"node": "*"
|
| 1666 |
+
}
|
| 1667 |
+
}
|
| 1668 |
+
}
|
| 1669 |
+
}
|
package.json
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"name": "cursor2api",
|
| 3 |
+
"version": "2.3.2",
|
| 4 |
+
"description": "Proxy Cursor docs AI to Anthropic Messages API for Claude Code",
|
| 5 |
+
"type": "module",
|
| 6 |
+
"scripts": {
|
| 7 |
+
"dev": "tsx watch src/index.ts",
|
| 8 |
+
"build": "tsc",
|
| 9 |
+
"start": "node dist/index.js"
|
| 10 |
+
},
|
| 11 |
+
"dependencies": {
|
| 12 |
+
"dotenv": "^16.5.0",
|
| 13 |
+
"eventsource-parser": "^3.0.1",
|
| 14 |
+
"express": "^5.1.0",
|
| 15 |
+
"tesseract.js": "^7.0.0",
|
| 16 |
+
"uuid": "^11.1.0",
|
| 17 |
+
"yaml": "^2.7.1"
|
| 18 |
+
},
|
| 19 |
+
"devDependencies": {
|
| 20 |
+
"@types/express": "^5.0.2",
|
| 21 |
+
"@types/node": "^22.15.0",
|
| 22 |
+
"@types/uuid": "^10.0.0",
|
| 23 |
+
"tsx": "^4.19.0",
|
| 24 |
+
"typescript": "^5.8.0"
|
| 25 |
+
}
|
| 26 |
+
}
|
tsconfig.json
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"compilerOptions": {
|
| 3 |
+
"target": "ES2022",
|
| 4 |
+
"module": "NodeNext",
|
| 5 |
+
"moduleResolution": "NodeNext",
|
| 6 |
+
"outDir": "./dist",
|
| 7 |
+
"rootDir": "./src",
|
| 8 |
+
"strict": true,
|
| 9 |
+
"esModuleInterop": true,
|
| 10 |
+
"skipLibCheck": true,
|
| 11 |
+
"forceConsistentCasingInFileNames": true,
|
| 12 |
+
"resolveJsonModule": true,
|
| 13 |
+
"declaration": true,
|
| 14 |
+
"sourceMap": true
|
| 15 |
+
},
|
| 16 |
+
"include": [
|
| 17 |
+
"src/**/*"
|
| 18 |
+
],
|
| 19 |
+
"exclude": [
|
| 20 |
+
"node_modules",
|
| 21 |
+
"dist"
|
| 22 |
+
]
|
| 23 |
+
}
|