@paybond/kit 0.12.5 → 0.12.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/agent/facade.d.ts +2 -0
- package/dist/agent/facade.js +10 -2
- package/dist/agent/guarded-agent.d.ts +3 -1
- package/dist/agent/guarded-agent.js +13 -2
- package/dist/agent/index.d.ts +2 -2
- package/dist/agent/index.js +1 -1
- package/dist/agent/instrument.d.ts +3 -0
- package/dist/agent/instrument.js +21 -10
- package/dist/agent/interceptor.js +19 -0
- package/dist/agent/types.d.ts +14 -0
- package/dist/agent-receipt-acta.d.ts +58 -0
- package/dist/agent-receipt-acta.js +140 -0
- package/dist/agent-receipt-inclusion.d.ts +40 -0
- package/dist/agent-receipt-inclusion.js +209 -0
- package/dist/agent-receipt-owner-disclosure.d.ts +71 -0
- package/dist/agent-receipt-owner-disclosure.js +277 -0
- package/dist/agent-receipt-pef.d.ts +69 -0
- package/dist/agent-receipt-pef.js +121 -0
- package/dist/agent-receipt-scitt.d.ts +50 -0
- package/dist/agent-receipt-scitt.js +382 -0
- package/dist/agent-receipt.d.ts +55 -0
- package/dist/agent-receipt.js +297 -4
- package/dist/claude-agents/config.d.ts +21 -2
- package/dist/claude-agents/config.js +37 -0
- package/dist/claude-agents/index.d.ts +1 -1
- package/dist/claude-agents/index.js +1 -1
- package/dist/cli/agent/demo-loaders.d.ts +1 -0
- package/dist/cli/agent/demo-loaders.js +12 -0
- package/dist/cli/command-spec.js +16 -1
- package/dist/cli/commands/agent.d.ts +4 -0
- package/dist/cli/commands/agent.js +107 -1
- package/dist/cli/help.js +4 -1
- package/dist/cloudflare-agents/config.d.ts +1 -1
- package/dist/cloudflare-agents/config.js +2 -2
- package/dist/google-adk/config.d.ts +36 -0
- package/dist/google-adk/config.js +172 -0
- package/dist/google-adk/index.d.ts +2 -0
- package/dist/google-adk/index.js +2 -0
- package/dist/google-adk/sandbox-demo.d.ts +32 -0
- package/dist/google-adk/sandbox-demo.js +104 -0
- package/dist/index.d.ts +10 -2
- package/dist/index.js +11 -3
- package/dist/init.js +29 -0
- package/dist/mcp-receipt-resource.js +3 -1
- package/dist/mcp-server.js +122 -2
- package/dist/policy/adapter-options.d.ts +9 -0
- package/dist/policy/adapter-options.js +11 -0
- package/dist/policy/index.d.ts +1 -0
- package/dist/policy/index.js +1 -0
- package/dist/policy/load.d.ts +7 -0
- package/dist/policy/load.js +13 -0
- package/dist/policy/merge.js +26 -0
- package/dist/policy/schema.d.ts +20 -0
- package/dist/policy/schema.js +34 -2
- package/dist/shopify/instrument.d.ts +8 -8
- package/dist/template-init.d.ts +2 -2
- package/dist/template-init.js +12 -4
- package/dist/vercel-ai/config.d.ts +2 -1
- package/dist/vercel-ai/config.js +2 -2
- package/dist/vercel-ai/index.d.ts +2 -1
- package/dist/vercel-ai/index.js +2 -1
- package/dist/vercel-ai/provider-executed.d.ts +7 -0
- package/dist/vercel-ai/provider-executed.js +20 -0
- package/dist/vercel-ai/tool-approval.d.ts +5 -0
- package/dist/vercel-ai/tool-approval.js +8 -1
- package/dist/vercel-ai/wrap-tools.d.ts +8 -1
- package/dist/vercel-ai/wrap-tools.js +17 -4
- package/package.json +13 -4
- package/templates/manifest.json +57 -12
- package/templates/openai-shopping-agent/package-lock.json +379 -14
- package/templates/openai-shopping-agent/package.json +2 -2
- package/templates/paybond-aws-operator/package-lock.json +376 -11
- package/templates/paybond-aws-operator/package.json +2 -2
- package/templates/paybond-claude-agents-demo/package-lock.json +379 -14
- package/templates/paybond-claude-agents-demo/package.json +2 -2
- package/templates/paybond-cloudflare-shopping-agent/.env.example +3 -0
- package/templates/paybond-cloudflare-shopping-agent/.github/workflows/smoke.yml +20 -0
- package/templates/paybond-cloudflare-shopping-agent/LICENSE +201 -0
- package/templates/paybond-cloudflare-shopping-agent/README.md +29 -0
- package/templates/paybond-cloudflare-shopping-agent/package-lock.json +2671 -0
- package/templates/paybond-cloudflare-shopping-agent/package.json +23 -0
- package/templates/paybond-cloudflare-shopping-agent/paybond.policy.yaml +22 -0
- package/templates/paybond-cloudflare-shopping-agent/src/agent.ts +109 -0
- package/templates/paybond-cloudflare-shopping-agent/src/index.ts +22 -0
- package/templates/paybond-cloudflare-shopping-agent/src/paybond.config.ts +51 -0
- package/templates/paybond-cloudflare-shopping-agent/tsconfig.json +13 -0
- package/templates/paybond-crewai-procurement-agent/.env.example +3 -0
- package/templates/paybond-crewai-procurement-agent/.github/workflows/smoke.yml +19 -0
- package/templates/paybond-crewai-procurement-agent/LICENSE +201 -0
- package/templates/paybond-crewai-procurement-agent/README.md +73 -0
- package/templates/paybond-crewai-procurement-agent/app.py +79 -0
- package/templates/paybond-crewai-procurement-agent/crew.py +117 -0
- package/templates/paybond-crewai-procurement-agent/package.json +6 -0
- package/templates/paybond-crewai-procurement-agent/paybond.policy.yaml +28 -0
- package/templates/paybond-crewai-procurement-agent/paybond_config.py +45 -0
- package/templates/paybond-crewai-procurement-agent/requirements.txt +2 -0
- package/templates/paybond-invoice-agent/requirements.txt +1 -1
- package/templates/paybond-mastra-travel-agent/package-lock.json +379 -14
- package/templates/paybond-mastra-travel-agent/package.json +2 -2
- package/templates/paybond-mcp-coding-agent/package-lock.json +376 -11
- package/templates/paybond-mcp-coding-agent/package.json +2 -2
- package/templates/paybond-openai-agents-demo/package-lock.json +379 -14
- package/templates/paybond-openai-agents-demo/package.json +2 -2
- package/templates/paybond-procurement-agent/package-lock.json +376 -11
- package/templates/paybond-procurement-agent/package.json +2 -2
- package/templates/paybond-shopify-shopping-agent/package-lock.json +376 -11
- package/templates/paybond-shopify-shopping-agent/package.json +2 -2
- package/templates/paybond-stripe-agent-demo/package-lock.json +376 -11
- package/templates/paybond-stripe-agent-demo/package.json +2 -2
- package/templates/paybond-travel-agent/package-lock.json +376 -11
- package/templates/paybond-travel-agent/package.json +2 -2
- package/templates/paybond-vercel-shopping-agent/package-lock.json +376 -11
- package/templates/paybond-vercel-shopping-agent/package.json +2 -2
|
@@ -0,0 +1,2671 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "paybond-cloudflare-shopping-agent",
|
|
3
|
+
"lockfileVersion": 3,
|
|
4
|
+
"requires": true,
|
|
5
|
+
"packages": {
|
|
6
|
+
"": {
|
|
7
|
+
"name": "paybond-cloudflare-shopping-agent",
|
|
8
|
+
"dependencies": {
|
|
9
|
+
"@paybond/kit": "^0.12.6",
|
|
10
|
+
"agents": "^0.10.0",
|
|
11
|
+
"ai": "^5.0.0",
|
|
12
|
+
"zod": "^4.2.0"
|
|
13
|
+
},
|
|
14
|
+
"devDependencies": {
|
|
15
|
+
"@types/node": "^22.10.1",
|
|
16
|
+
"typescript": "^7.0.2"
|
|
17
|
+
},
|
|
18
|
+
"engines": {
|
|
19
|
+
"node": ">=22"
|
|
20
|
+
}
|
|
21
|
+
},
|
|
22
|
+
"node_modules/@ai-sdk/gateway": {
|
|
23
|
+
"version": "2.0.109",
|
|
24
|
+
"resolved": "https://registry.npmjs.org/@ai-sdk/gateway/-/gateway-2.0.109.tgz",
|
|
25
|
+
"integrity": "sha512-jvTQnfmcKD/bc8fbp2bbaO8QvqSPaj7lv5rj9kj/GLHUfTGpjQV3pH7GdO4fDi1SX2PdHpPQY0y6rxJ05Xo5cg==",
|
|
26
|
+
"license": "Apache-2.0",
|
|
27
|
+
"dependencies": {
|
|
28
|
+
"@ai-sdk/provider": "2.0.3",
|
|
29
|
+
"@ai-sdk/provider-utils": "3.0.28",
|
|
30
|
+
"@vercel/oidc": "3.1.0"
|
|
31
|
+
},
|
|
32
|
+
"engines": {
|
|
33
|
+
"node": ">=18"
|
|
34
|
+
},
|
|
35
|
+
"peerDependencies": {
|
|
36
|
+
"zod": "^3.25.76 || ^4.1.8"
|
|
37
|
+
}
|
|
38
|
+
},
|
|
39
|
+
"node_modules/@ai-sdk/provider": {
|
|
40
|
+
"version": "2.0.3",
|
|
41
|
+
"resolved": "https://registry.npmjs.org/@ai-sdk/provider/-/provider-2.0.3.tgz",
|
|
42
|
+
"integrity": "sha512-h88OPkavHTiN9tMn2l5awAznGB0lXzjcLhgR1/rvjB2zlLprsNxbM2tt6OJsHUxduLC3klq0/eqaSf6fX5XVww==",
|
|
43
|
+
"license": "Apache-2.0",
|
|
44
|
+
"dependencies": {
|
|
45
|
+
"json-schema": "^0.4.0"
|
|
46
|
+
},
|
|
47
|
+
"engines": {
|
|
48
|
+
"node": ">=18"
|
|
49
|
+
}
|
|
50
|
+
},
|
|
51
|
+
"node_modules/@ai-sdk/provider-utils": {
|
|
52
|
+
"version": "3.0.28",
|
|
53
|
+
"resolved": "https://registry.npmjs.org/@ai-sdk/provider-utils/-/provider-utils-3.0.28.tgz",
|
|
54
|
+
"integrity": "sha512-bXlX1WX7E50a2N+AJW+1a/x63m52aPhm+6xYe5THxWrx9vW9NR7E2Ay+1G1ndlCdMdYKo2Fnsd7kBhuyQPaphw==",
|
|
55
|
+
"license": "Apache-2.0",
|
|
56
|
+
"dependencies": {
|
|
57
|
+
"@ai-sdk/provider": "2.0.3",
|
|
58
|
+
"@standard-schema/spec": "^1.0.0",
|
|
59
|
+
"eventsource-parser": "^3.0.6"
|
|
60
|
+
},
|
|
61
|
+
"engines": {
|
|
62
|
+
"node": ">=18"
|
|
63
|
+
},
|
|
64
|
+
"peerDependencies": {
|
|
65
|
+
"zod": "^3.25.76 || ^4.1.8"
|
|
66
|
+
}
|
|
67
|
+
},
|
|
68
|
+
"node_modules/@apidevtools/json-schema-ref-parser": {
|
|
69
|
+
"version": "11.9.3",
|
|
70
|
+
"resolved": "https://registry.npmjs.org/@apidevtools/json-schema-ref-parser/-/json-schema-ref-parser-11.9.3.tgz",
|
|
71
|
+
"integrity": "sha512-60vepv88RwcJtSHrD6MjIL6Ta3SOYbgfnkHb+ppAVK+o9mXprRtulx7VlRl3lN3bbvysAfCS7WMVfhUYemB0IQ==",
|
|
72
|
+
"license": "MIT",
|
|
73
|
+
"dependencies": {
|
|
74
|
+
"@jsdevtools/ono": "^7.1.3",
|
|
75
|
+
"@types/json-schema": "^7.0.15",
|
|
76
|
+
"js-yaml": "^4.1.0"
|
|
77
|
+
},
|
|
78
|
+
"engines": {
|
|
79
|
+
"node": ">= 16"
|
|
80
|
+
},
|
|
81
|
+
"funding": {
|
|
82
|
+
"url": "https://github.com/sponsors/philsturgeon"
|
|
83
|
+
}
|
|
84
|
+
},
|
|
85
|
+
"node_modules/@babel/code-frame": {
|
|
86
|
+
"version": "7.29.7",
|
|
87
|
+
"resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.29.7.tgz",
|
|
88
|
+
"integrity": "sha512-Aup7aUOfpbAUg2ROOJN6Iw5f9DMBlzu0mIkm/malLQFN/YQgO48wCj0Kxa3sEHJvPVFg7siR+qRInwXd2qhQKw==",
|
|
89
|
+
"license": "MIT",
|
|
90
|
+
"dependencies": {
|
|
91
|
+
"@babel/helper-validator-identifier": "^7.29.7",
|
|
92
|
+
"js-tokens": "^4.0.0",
|
|
93
|
+
"picocolors": "^1.1.1"
|
|
94
|
+
},
|
|
95
|
+
"engines": {
|
|
96
|
+
"node": ">=6.9.0"
|
|
97
|
+
}
|
|
98
|
+
},
|
|
99
|
+
"node_modules/@babel/generator": {
|
|
100
|
+
"version": "7.29.7",
|
|
101
|
+
"resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.29.7.tgz",
|
|
102
|
+
"integrity": "sha512-DkXD5OJQaAQIdZ1bt3UZdEnHAn9Imd3IVBdX03UFe+ony9Ojw5pzr9YVKGDY1jt+Gcn/FnGkNf8r+Vj5NOJWtQ==",
|
|
103
|
+
"license": "MIT",
|
|
104
|
+
"dependencies": {
|
|
105
|
+
"@babel/parser": "^7.29.7",
|
|
106
|
+
"@babel/types": "^7.29.7",
|
|
107
|
+
"@jridgewell/gen-mapping": "^0.3.12",
|
|
108
|
+
"@jridgewell/trace-mapping": "^0.3.28",
|
|
109
|
+
"jsesc": "^3.0.2"
|
|
110
|
+
},
|
|
111
|
+
"engines": {
|
|
112
|
+
"node": ">=6.9.0"
|
|
113
|
+
}
|
|
114
|
+
},
|
|
115
|
+
"node_modules/@babel/helper-annotate-as-pure": {
|
|
116
|
+
"version": "7.29.7",
|
|
117
|
+
"resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.29.7.tgz",
|
|
118
|
+
"integrity": "sha512-OoK6239jHPuSQOoS0kfTVKn0b/rVTk0seKq4Gd2UMLtmOVLjDC0ki3e+c90Trqv2gMfvJFqkiljrr568+qddiw==",
|
|
119
|
+
"license": "MIT",
|
|
120
|
+
"dependencies": {
|
|
121
|
+
"@babel/types": "^7.29.7"
|
|
122
|
+
},
|
|
123
|
+
"engines": {
|
|
124
|
+
"node": ">=6.9.0"
|
|
125
|
+
}
|
|
126
|
+
},
|
|
127
|
+
"node_modules/@babel/helper-create-class-features-plugin": {
|
|
128
|
+
"version": "7.29.7",
|
|
129
|
+
"resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.29.7.tgz",
|
|
130
|
+
"integrity": "sha512-IY3ZD9Tmooqr3TUhc3DUWxiuo8xx1DWLhd5M7hQ+ZWJamqM2BbalrBJb2MisSLoYorOj75U03qULCxQTY9r3hg==",
|
|
131
|
+
"license": "MIT",
|
|
132
|
+
"dependencies": {
|
|
133
|
+
"@babel/helper-annotate-as-pure": "^7.29.7",
|
|
134
|
+
"@babel/helper-member-expression-to-functions": "^7.29.7",
|
|
135
|
+
"@babel/helper-optimise-call-expression": "^7.29.7",
|
|
136
|
+
"@babel/helper-replace-supers": "^7.29.7",
|
|
137
|
+
"@babel/helper-skip-transparent-expression-wrappers": "^7.29.7",
|
|
138
|
+
"@babel/traverse": "^7.29.7",
|
|
139
|
+
"semver": "^6.3.1"
|
|
140
|
+
},
|
|
141
|
+
"engines": {
|
|
142
|
+
"node": ">=6.9.0"
|
|
143
|
+
},
|
|
144
|
+
"peerDependencies": {
|
|
145
|
+
"@babel/core": "^7.0.0"
|
|
146
|
+
}
|
|
147
|
+
},
|
|
148
|
+
"node_modules/@babel/helper-globals": {
|
|
149
|
+
"version": "7.29.7",
|
|
150
|
+
"resolved": "https://registry.npmjs.org/@babel/helper-globals/-/helper-globals-7.29.7.tgz",
|
|
151
|
+
"integrity": "sha512-3nQVUAtvkKH9zahfWgw96Jc/uFOmjACE1kQz82E2lqWmHBgjzbNlsC22nuQTfahmWeQtTq5nQ/4Nnd2A1wj4zA==",
|
|
152
|
+
"license": "MIT",
|
|
153
|
+
"engines": {
|
|
154
|
+
"node": ">=6.9.0"
|
|
155
|
+
}
|
|
156
|
+
},
|
|
157
|
+
"node_modules/@babel/helper-member-expression-to-functions": {
|
|
158
|
+
"version": "7.29.7",
|
|
159
|
+
"resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.29.7.tgz",
|
|
160
|
+
"integrity": "sha512-j+7JYmk1JYDtACIGj0QJqqWZjoUpMoEikQGADMaHgCMCSDqd2+P32rfcibUNrGOMWrlzK1WJBdxrB3JJQZwWtg==",
|
|
161
|
+
"license": "MIT",
|
|
162
|
+
"dependencies": {
|
|
163
|
+
"@babel/traverse": "^7.29.7",
|
|
164
|
+
"@babel/types": "^7.29.7"
|
|
165
|
+
},
|
|
166
|
+
"engines": {
|
|
167
|
+
"node": ">=6.9.0"
|
|
168
|
+
}
|
|
169
|
+
},
|
|
170
|
+
"node_modules/@babel/helper-optimise-call-expression": {
|
|
171
|
+
"version": "7.29.7",
|
|
172
|
+
"resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.29.7.tgz",
|
|
173
|
+
"integrity": "sha512-+kmGVjcT9RGYzoDwdwEqEvGgKe3BYq+O1iGzjFubaNgZHwYHP6lsF2Yghf4kEuv9BV7tYDZ913aBW9am6YKong==",
|
|
174
|
+
"license": "MIT",
|
|
175
|
+
"dependencies": {
|
|
176
|
+
"@babel/types": "^7.29.7"
|
|
177
|
+
},
|
|
178
|
+
"engines": {
|
|
179
|
+
"node": ">=6.9.0"
|
|
180
|
+
}
|
|
181
|
+
},
|
|
182
|
+
"node_modules/@babel/helper-plugin-utils": {
|
|
183
|
+
"version": "7.29.7",
|
|
184
|
+
"resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.29.7.tgz",
|
|
185
|
+
"integrity": "sha512-G7sHYigPY17oO5SYWnfD/0MTBwVR781S/JI643e/JhUYgVgWE/61SoW3NH9KWUKyKq5LVh3npif99Wkt6j86Jw==",
|
|
186
|
+
"license": "MIT",
|
|
187
|
+
"engines": {
|
|
188
|
+
"node": ">=6.9.0"
|
|
189
|
+
}
|
|
190
|
+
},
|
|
191
|
+
"node_modules/@babel/helper-replace-supers": {
|
|
192
|
+
"version": "7.29.7",
|
|
193
|
+
"resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.29.7.tgz",
|
|
194
|
+
"integrity": "sha512-atfGXWSeCiF4DnKZIfmJfQRkSw9b9gNNXR1kqKjbhG4pGYCOnkp8OcTB8E3NXjBu8NpheSnOeNKz8KT7UNFTmQ==",
|
|
195
|
+
"license": "MIT",
|
|
196
|
+
"dependencies": {
|
|
197
|
+
"@babel/helper-member-expression-to-functions": "^7.29.7",
|
|
198
|
+
"@babel/helper-optimise-call-expression": "^7.29.7",
|
|
199
|
+
"@babel/traverse": "^7.29.7"
|
|
200
|
+
},
|
|
201
|
+
"engines": {
|
|
202
|
+
"node": ">=6.9.0"
|
|
203
|
+
},
|
|
204
|
+
"peerDependencies": {
|
|
205
|
+
"@babel/core": "^7.0.0"
|
|
206
|
+
}
|
|
207
|
+
},
|
|
208
|
+
"node_modules/@babel/helper-skip-transparent-expression-wrappers": {
|
|
209
|
+
"version": "7.29.7",
|
|
210
|
+
"resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.29.7.tgz",
|
|
211
|
+
"integrity": "sha512-brcMGQaVzIeUb+6/bs1Av0f8YuNNjKY2JyvfRCsFuFsdKccEQ5Ges2y74D74NZ1Rz8lKJ9ksJkfqwQFJ/iNEyQ==",
|
|
212
|
+
"license": "MIT",
|
|
213
|
+
"dependencies": {
|
|
214
|
+
"@babel/traverse": "^7.29.7",
|
|
215
|
+
"@babel/types": "^7.29.7"
|
|
216
|
+
},
|
|
217
|
+
"engines": {
|
|
218
|
+
"node": ">=6.9.0"
|
|
219
|
+
}
|
|
220
|
+
},
|
|
221
|
+
"node_modules/@babel/helper-string-parser": {
|
|
222
|
+
"version": "7.29.7",
|
|
223
|
+
"resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.29.7.tgz",
|
|
224
|
+
"integrity": "sha512-Pb5ijPrZ89GDH8223L4UP8i6QApWxs04RbPQJTeWDV0/keR2E36MeKnyr6LYmUUvqRRI+Iv87SuF1W6ErINzYw==",
|
|
225
|
+
"license": "MIT",
|
|
226
|
+
"engines": {
|
|
227
|
+
"node": ">=6.9.0"
|
|
228
|
+
}
|
|
229
|
+
},
|
|
230
|
+
"node_modules/@babel/helper-validator-identifier": {
|
|
231
|
+
"version": "7.29.7",
|
|
232
|
+
"resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.29.7.tgz",
|
|
233
|
+
"integrity": "sha512-qehxGkRj55h/ff8EMaJ+cYhyaKlHIxqYDn682wQD7RNp9UujOQsHog2uS0r2vzr4pW+sXf90NeeayjcNaX3fFg==",
|
|
234
|
+
"license": "MIT",
|
|
235
|
+
"engines": {
|
|
236
|
+
"node": ">=6.9.0"
|
|
237
|
+
}
|
|
238
|
+
},
|
|
239
|
+
"node_modules/@babel/parser": {
|
|
240
|
+
"version": "7.29.7",
|
|
241
|
+
"resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.29.7.tgz",
|
|
242
|
+
"integrity": "sha512-hnORnjP/1P/zFEndoeX+n+t1RwWRJiJpM/jO7FW32Kn9r5+sJB2JWOdYo4L6k78j15eCwY3Gm/7364B1EMwtNg==",
|
|
243
|
+
"license": "MIT",
|
|
244
|
+
"dependencies": {
|
|
245
|
+
"@babel/types": "^7.29.7"
|
|
246
|
+
},
|
|
247
|
+
"bin": {
|
|
248
|
+
"parser": "bin/babel-parser.js"
|
|
249
|
+
},
|
|
250
|
+
"engines": {
|
|
251
|
+
"node": ">=6.0.0"
|
|
252
|
+
}
|
|
253
|
+
},
|
|
254
|
+
"node_modules/@babel/plugin-proposal-decorators": {
|
|
255
|
+
"version": "7.29.7",
|
|
256
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.29.7.tgz",
|
|
257
|
+
"integrity": "sha512-EtU0Hi3GvrTqD56xKmZvV/uCXK2ZbwVNPNLAquVItcAZpUhkXwWlo3Fmj0c2LxgSf2I8IDULeAepwNP1OefLXg==",
|
|
258
|
+
"license": "MIT",
|
|
259
|
+
"dependencies": {
|
|
260
|
+
"@babel/helper-create-class-features-plugin": "^7.29.7",
|
|
261
|
+
"@babel/helper-plugin-utils": "^7.29.7",
|
|
262
|
+
"@babel/plugin-syntax-decorators": "^7.29.7"
|
|
263
|
+
},
|
|
264
|
+
"engines": {
|
|
265
|
+
"node": ">=6.9.0"
|
|
266
|
+
},
|
|
267
|
+
"peerDependencies": {
|
|
268
|
+
"@babel/core": "^7.0.0-0"
|
|
269
|
+
}
|
|
270
|
+
},
|
|
271
|
+
"node_modules/@babel/plugin-syntax-decorators": {
|
|
272
|
+
"version": "7.29.7",
|
|
273
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-syntax-decorators/-/plugin-syntax-decorators-7.29.7.tgz",
|
|
274
|
+
"integrity": "sha512-9MTTLbF39X6sqM92JPEsoI7++26hjZvzkxKZy64aMhWLH2mPkJ/Q3AV4QLmls3R14FpSpkOwQQfUh962JGQxxg==",
|
|
275
|
+
"license": "MIT",
|
|
276
|
+
"dependencies": {
|
|
277
|
+
"@babel/helper-plugin-utils": "^7.29.7"
|
|
278
|
+
},
|
|
279
|
+
"engines": {
|
|
280
|
+
"node": ">=6.9.0"
|
|
281
|
+
},
|
|
282
|
+
"peerDependencies": {
|
|
283
|
+
"@babel/core": "^7.0.0-0"
|
|
284
|
+
}
|
|
285
|
+
},
|
|
286
|
+
"node_modules/@babel/runtime": {
|
|
287
|
+
"version": "7.29.7",
|
|
288
|
+
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.29.7.tgz",
|
|
289
|
+
"integrity": "sha512-Nq8OhGWiZIZGV6hLHoyAKLLcJihP/xFeBMGJoUrxTX2psI8dCifzLhZISFb+VWS3wFMRDmCGw5R+dOySCqPLhw==",
|
|
290
|
+
"license": "MIT",
|
|
291
|
+
"engines": {
|
|
292
|
+
"node": ">=6.9.0"
|
|
293
|
+
}
|
|
294
|
+
},
|
|
295
|
+
"node_modules/@babel/runtime-corejs3": {
|
|
296
|
+
"version": "7.29.7",
|
|
297
|
+
"resolved": "https://registry.npmjs.org/@babel/runtime-corejs3/-/runtime-corejs3-7.29.7.tgz",
|
|
298
|
+
"integrity": "sha512-ppj9ouYku+RX0ljtgZd+KMO5mkM2bCqg8H2PYAFWnLsHEIKIdRojqbJ2i3eVHrisuxy7nOFCmngTDdWtUCdXUQ==",
|
|
299
|
+
"license": "MIT",
|
|
300
|
+
"dependencies": {
|
|
301
|
+
"core-js-pure": "^3.48.0"
|
|
302
|
+
},
|
|
303
|
+
"engines": {
|
|
304
|
+
"node": ">=6.9.0"
|
|
305
|
+
}
|
|
306
|
+
},
|
|
307
|
+
"node_modules/@babel/template": {
|
|
308
|
+
"version": "7.29.7",
|
|
309
|
+
"resolved": "https://registry.npmjs.org/@babel/template/-/template-7.29.7.tgz",
|
|
310
|
+
"integrity": "sha512-puq+Gf35oI24FeN11LkoUQFqv9uwNeWpxXZi/Ji3rRIoKAzKnxRaZ+Gkj0vKS9ZCiTESfng1N9LyOyXvo+m+Gg==",
|
|
311
|
+
"license": "MIT",
|
|
312
|
+
"dependencies": {
|
|
313
|
+
"@babel/code-frame": "^7.29.7",
|
|
314
|
+
"@babel/parser": "^7.29.7",
|
|
315
|
+
"@babel/types": "^7.29.7"
|
|
316
|
+
},
|
|
317
|
+
"engines": {
|
|
318
|
+
"node": ">=6.9.0"
|
|
319
|
+
}
|
|
320
|
+
},
|
|
321
|
+
"node_modules/@babel/traverse": {
|
|
322
|
+
"version": "7.29.7",
|
|
323
|
+
"resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.29.7.tgz",
|
|
324
|
+
"integrity": "sha512-EhlfNQtZ+NK22w5BM61ciuiq1m58ed33Wr1Xan//ZRTy6hgjnwyCffRYwzsGXdASJSUJ1guZILsErh1eQcl+zw==",
|
|
325
|
+
"license": "MIT",
|
|
326
|
+
"dependencies": {
|
|
327
|
+
"@babel/code-frame": "^7.29.7",
|
|
328
|
+
"@babel/generator": "^7.29.7",
|
|
329
|
+
"@babel/helper-globals": "^7.29.7",
|
|
330
|
+
"@babel/parser": "^7.29.7",
|
|
331
|
+
"@babel/template": "^7.29.7",
|
|
332
|
+
"@babel/types": "^7.29.7",
|
|
333
|
+
"debug": "^4.3.1"
|
|
334
|
+
},
|
|
335
|
+
"engines": {
|
|
336
|
+
"node": ">=6.9.0"
|
|
337
|
+
}
|
|
338
|
+
},
|
|
339
|
+
"node_modules/@babel/types": {
|
|
340
|
+
"version": "7.29.7",
|
|
341
|
+
"resolved": "https://registry.npmjs.org/@babel/types/-/types-7.29.7.tgz",
|
|
342
|
+
"integrity": "sha512-4zBIxpPzowiZpusoFkyGVwakdRJUyuH5PxQ/PrqghfdFWWasvnCdPfQXHrenDai+gyLARulZjZowCOj6fjT4pA==",
|
|
343
|
+
"license": "MIT",
|
|
344
|
+
"dependencies": {
|
|
345
|
+
"@babel/helper-string-parser": "^7.29.7",
|
|
346
|
+
"@babel/helper-validator-identifier": "^7.29.7"
|
|
347
|
+
},
|
|
348
|
+
"engines": {
|
|
349
|
+
"node": ">=6.9.0"
|
|
350
|
+
}
|
|
351
|
+
},
|
|
352
|
+
"node_modules/@cfworker/json-schema": {
|
|
353
|
+
"version": "4.1.1",
|
|
354
|
+
"resolved": "https://registry.npmjs.org/@cfworker/json-schema/-/json-schema-4.1.1.tgz",
|
|
355
|
+
"integrity": "sha512-gAmrUZSGtKc3AiBL71iNWxDsyUC5uMaKKGdvzYsBoTW/xi42JQHl7eKV2OYzCUqvc+D2RCcf7EXY2iCyFIk6og==",
|
|
356
|
+
"license": "MIT"
|
|
357
|
+
},
|
|
358
|
+
"node_modules/@hono/node-server": {
|
|
359
|
+
"version": "1.19.14",
|
|
360
|
+
"resolved": "https://registry.npmjs.org/@hono/node-server/-/node-server-1.19.14.tgz",
|
|
361
|
+
"integrity": "sha512-GwtvgtXxnWsucXvbQXkRgqksiH2Qed37H9xHZocE5sA3N8O8O8/8FA3uclQXxXVzc9XBZuEOMK7+r02FmSpHtw==",
|
|
362
|
+
"license": "MIT",
|
|
363
|
+
"engines": {
|
|
364
|
+
"node": ">=18.14.1"
|
|
365
|
+
},
|
|
366
|
+
"peerDependencies": {
|
|
367
|
+
"hono": "^4"
|
|
368
|
+
}
|
|
369
|
+
},
|
|
370
|
+
"node_modules/@jridgewell/gen-mapping": {
|
|
371
|
+
"version": "0.3.13",
|
|
372
|
+
"resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.13.tgz",
|
|
373
|
+
"integrity": "sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==",
|
|
374
|
+
"license": "MIT",
|
|
375
|
+
"dependencies": {
|
|
376
|
+
"@jridgewell/sourcemap-codec": "^1.5.0",
|
|
377
|
+
"@jridgewell/trace-mapping": "^0.3.24"
|
|
378
|
+
}
|
|
379
|
+
},
|
|
380
|
+
"node_modules/@jridgewell/resolve-uri": {
|
|
381
|
+
"version": "3.1.2",
|
|
382
|
+
"resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz",
|
|
383
|
+
"integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==",
|
|
384
|
+
"license": "MIT",
|
|
385
|
+
"engines": {
|
|
386
|
+
"node": ">=6.0.0"
|
|
387
|
+
}
|
|
388
|
+
},
|
|
389
|
+
"node_modules/@jridgewell/sourcemap-codec": {
|
|
390
|
+
"version": "1.5.5",
|
|
391
|
+
"resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.5.tgz",
|
|
392
|
+
"integrity": "sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==",
|
|
393
|
+
"license": "MIT"
|
|
394
|
+
},
|
|
395
|
+
"node_modules/@jridgewell/trace-mapping": {
|
|
396
|
+
"version": "0.3.31",
|
|
397
|
+
"resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.31.tgz",
|
|
398
|
+
"integrity": "sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==",
|
|
399
|
+
"license": "MIT",
|
|
400
|
+
"dependencies": {
|
|
401
|
+
"@jridgewell/resolve-uri": "^3.1.0",
|
|
402
|
+
"@jridgewell/sourcemap-codec": "^1.4.14"
|
|
403
|
+
}
|
|
404
|
+
},
|
|
405
|
+
"node_modules/@jsdevtools/ono": {
|
|
406
|
+
"version": "7.1.3",
|
|
407
|
+
"resolved": "https://registry.npmjs.org/@jsdevtools/ono/-/ono-7.1.3.tgz",
|
|
408
|
+
"integrity": "sha512-4JQNk+3mVzK3xh2rqd6RB4J46qUR19azEHBneZyTZM+c456qOrbbM/5xcR8huNCCcbVt7+UmizG6GuUvPvKUYg==",
|
|
409
|
+
"license": "MIT"
|
|
410
|
+
},
|
|
411
|
+
"node_modules/@modelcontextprotocol/sdk": {
|
|
412
|
+
"version": "1.29.0",
|
|
413
|
+
"resolved": "https://registry.npmjs.org/@modelcontextprotocol/sdk/-/sdk-1.29.0.tgz",
|
|
414
|
+
"integrity": "sha512-zo37mZA9hJWpULgkRpowewez1y6ML5GsXJPY8FI0tBBCd77HEvza4jDqRKOXgHNn867PVGCyTdzqpz0izu5ZjQ==",
|
|
415
|
+
"license": "MIT",
|
|
416
|
+
"dependencies": {
|
|
417
|
+
"@hono/node-server": "^1.19.9",
|
|
418
|
+
"ajv": "^8.17.1",
|
|
419
|
+
"ajv-formats": "^3.0.1",
|
|
420
|
+
"content-type": "^1.0.5",
|
|
421
|
+
"cors": "^2.8.5",
|
|
422
|
+
"cross-spawn": "^7.0.5",
|
|
423
|
+
"eventsource": "^3.0.2",
|
|
424
|
+
"eventsource-parser": "^3.0.0",
|
|
425
|
+
"express": "^5.2.1",
|
|
426
|
+
"express-rate-limit": "^8.2.1",
|
|
427
|
+
"hono": "^4.11.4",
|
|
428
|
+
"jose": "^6.1.3",
|
|
429
|
+
"json-schema-typed": "^8.0.2",
|
|
430
|
+
"pkce-challenge": "^5.0.0",
|
|
431
|
+
"raw-body": "^3.0.0",
|
|
432
|
+
"zod": "^3.25 || ^4.0",
|
|
433
|
+
"zod-to-json-schema": "^3.25.1"
|
|
434
|
+
},
|
|
435
|
+
"engines": {
|
|
436
|
+
"node": ">=18"
|
|
437
|
+
},
|
|
438
|
+
"peerDependencies": {
|
|
439
|
+
"@cfworker/json-schema": "^4.1.1",
|
|
440
|
+
"zod": "^3.25 || ^4.0"
|
|
441
|
+
},
|
|
442
|
+
"peerDependenciesMeta": {
|
|
443
|
+
"@cfworker/json-schema": {
|
|
444
|
+
"optional": true
|
|
445
|
+
},
|
|
446
|
+
"zod": {
|
|
447
|
+
"optional": false
|
|
448
|
+
}
|
|
449
|
+
}
|
|
450
|
+
},
|
|
451
|
+
"node_modules/@noble/ed25519": {
|
|
452
|
+
"version": "2.3.0",
|
|
453
|
+
"resolved": "https://registry.npmjs.org/@noble/ed25519/-/ed25519-2.3.0.tgz",
|
|
454
|
+
"integrity": "sha512-M7dvXL2B92/M7dw9+gzuydL8qn/jiqNHaoR3Q+cb1q1GHV7uwE17WCyFMG+Y+TZb5izcaXk5TdJRrDUxHXL78A==",
|
|
455
|
+
"license": "MIT",
|
|
456
|
+
"funding": {
|
|
457
|
+
"url": "https://paulmillr.com/funding/"
|
|
458
|
+
}
|
|
459
|
+
},
|
|
460
|
+
"node_modules/@noble/hashes": {
|
|
461
|
+
"version": "1.8.0",
|
|
462
|
+
"resolved": "https://registry.npmjs.org/@noble/hashes/-/hashes-1.8.0.tgz",
|
|
463
|
+
"integrity": "sha512-jCs9ldd7NwzpgXDIf6P3+NrHh9/sD6CQdxHyjQI+h/6rDNo88ypBxxz45UDuZHz9r3tNz7N/VInSVoVdtXEI4A==",
|
|
464
|
+
"license": "MIT",
|
|
465
|
+
"engines": {
|
|
466
|
+
"node": "^14.21.3 || >=16"
|
|
467
|
+
},
|
|
468
|
+
"funding": {
|
|
469
|
+
"url": "https://paulmillr.com/funding/"
|
|
470
|
+
}
|
|
471
|
+
},
|
|
472
|
+
"node_modules/@noble/secp256k1": {
|
|
473
|
+
"version": "2.3.0",
|
|
474
|
+
"resolved": "https://registry.npmjs.org/@noble/secp256k1/-/secp256k1-2.3.0.tgz",
|
|
475
|
+
"integrity": "sha512-0TQed2gcBbIrh7Ccyw+y/uZQvbJwm7Ao4scBUxqpBCcsOlZG0O4KGfjtNAy/li4W8n1xt3dxrwJ0beZ2h2G6Kw==",
|
|
476
|
+
"license": "MIT",
|
|
477
|
+
"funding": {
|
|
478
|
+
"url": "https://paulmillr.com/funding/"
|
|
479
|
+
}
|
|
480
|
+
},
|
|
481
|
+
"node_modules/@opentelemetry/api": {
|
|
482
|
+
"version": "1.9.0",
|
|
483
|
+
"resolved": "https://registry.npmjs.org/@opentelemetry/api/-/api-1.9.0.tgz",
|
|
484
|
+
"integrity": "sha512-3giAOQvZiH5F9bMlMiv8+GSPMeqg0dbaeo58/0SlA9sxSqZhnUtxzX9/2FzyhS9sWQf5S0GJE0AKBrFqjpeYcg==",
|
|
485
|
+
"license": "Apache-2.0",
|
|
486
|
+
"engines": {
|
|
487
|
+
"node": ">=8.0.0"
|
|
488
|
+
}
|
|
489
|
+
},
|
|
490
|
+
"node_modules/@paybond/kit": {
|
|
491
|
+
"version": "0.12.6",
|
|
492
|
+
"resolved": "https://registry.npmjs.org/@paybond/kit/-/kit-0.12.6.tgz",
|
|
493
|
+
"integrity": "sha512-rkZ+7SjXm3aZ9TIGkCYvwTWV+NPRxuol+UmBGd0NPzOilHmHhP84aYH1Ro4syVA2pqIdyqCItSszGQMETPjNTA==",
|
|
494
|
+
"license": "Apache-2.0",
|
|
495
|
+
"dependencies": {
|
|
496
|
+
"@noble/ed25519": "^2.2.1",
|
|
497
|
+
"@noble/hashes": "^1.7.1",
|
|
498
|
+
"@noble/secp256k1": "^2.2.3",
|
|
499
|
+
"ajv": "^8.17.1",
|
|
500
|
+
"blake3": "^2.1.7",
|
|
501
|
+
"uuid": "^14.0.0",
|
|
502
|
+
"zod": "^3.25.32 || ^4.2.0"
|
|
503
|
+
},
|
|
504
|
+
"bin": {
|
|
505
|
+
"paybond": "dist/cli.js",
|
|
506
|
+
"paybond-init": "dist/init.js",
|
|
507
|
+
"paybond-kit-login": "dist/login.js",
|
|
508
|
+
"paybond-mcp-server": "dist/mcp-server.js"
|
|
509
|
+
},
|
|
510
|
+
"engines": {
|
|
511
|
+
"node": ">=22"
|
|
512
|
+
},
|
|
513
|
+
"peerDependencies": {
|
|
514
|
+
"@anthropic-ai/claude-agent-sdk": ">=0.2.100",
|
|
515
|
+
"@google/adk": ">=1.0.0",
|
|
516
|
+
"@langchain/core": ">=0.3.0",
|
|
517
|
+
"@langchain/langgraph": ">=0.2.50",
|
|
518
|
+
"@mastra/core": ">=1.0.0",
|
|
519
|
+
"@openai/agents": ">=0.12.0",
|
|
520
|
+
"agents": ">=0.10.0",
|
|
521
|
+
"ai": ">=4.0.0",
|
|
522
|
+
"zod": "^3.25.32 || ^4.2.0"
|
|
523
|
+
},
|
|
524
|
+
"peerDependenciesMeta": {
|
|
525
|
+
"@anthropic-ai/claude-agent-sdk": {
|
|
526
|
+
"optional": true
|
|
527
|
+
},
|
|
528
|
+
"@google/adk": {
|
|
529
|
+
"optional": true
|
|
530
|
+
},
|
|
531
|
+
"@langchain/core": {
|
|
532
|
+
"optional": true
|
|
533
|
+
},
|
|
534
|
+
"@langchain/langgraph": {
|
|
535
|
+
"optional": true
|
|
536
|
+
},
|
|
537
|
+
"@mastra/core": {
|
|
538
|
+
"optional": true
|
|
539
|
+
},
|
|
540
|
+
"@openai/agents": {
|
|
541
|
+
"optional": true
|
|
542
|
+
},
|
|
543
|
+
"agents": {
|
|
544
|
+
"optional": true
|
|
545
|
+
},
|
|
546
|
+
"ai": {
|
|
547
|
+
"optional": true
|
|
548
|
+
},
|
|
549
|
+
"zod": {
|
|
550
|
+
"optional": true
|
|
551
|
+
}
|
|
552
|
+
}
|
|
553
|
+
},
|
|
554
|
+
"node_modules/@rolldown/plugin-babel": {
|
|
555
|
+
"version": "0.2.3",
|
|
556
|
+
"resolved": "https://registry.npmjs.org/@rolldown/plugin-babel/-/plugin-babel-0.2.3.tgz",
|
|
557
|
+
"integrity": "sha512-+zEk16yGlz1F9STiRr6uG9hmIXb6nprjLczV/htGptYuLoCuxb+itZ03RKCEeOhBpDDd1NU7qF6x1VLMUp62bw==",
|
|
558
|
+
"license": "MIT",
|
|
559
|
+
"dependencies": {
|
|
560
|
+
"picomatch": "^4.0.4"
|
|
561
|
+
},
|
|
562
|
+
"engines": {
|
|
563
|
+
"node": ">=22.12.0 || ^24.0.0"
|
|
564
|
+
},
|
|
565
|
+
"peerDependencies": {
|
|
566
|
+
"@babel/core": "^7.29.0 || ^8.0.0-rc.1",
|
|
567
|
+
"@babel/plugin-transform-runtime": "^7.29.0 || ^8.0.0-rc.1",
|
|
568
|
+
"@babel/runtime": "^7.27.0 || ^8.0.0-rc.1",
|
|
569
|
+
"rolldown": "^1.0.0-rc.5",
|
|
570
|
+
"vite": "^8.0.0"
|
|
571
|
+
},
|
|
572
|
+
"peerDependenciesMeta": {
|
|
573
|
+
"@babel/plugin-transform-runtime": {
|
|
574
|
+
"optional": true
|
|
575
|
+
},
|
|
576
|
+
"@babel/runtime": {
|
|
577
|
+
"optional": true
|
|
578
|
+
},
|
|
579
|
+
"vite": {
|
|
580
|
+
"optional": true
|
|
581
|
+
}
|
|
582
|
+
}
|
|
583
|
+
},
|
|
584
|
+
"node_modules/@standard-schema/spec": {
|
|
585
|
+
"version": "1.1.0",
|
|
586
|
+
"resolved": "https://registry.npmjs.org/@standard-schema/spec/-/spec-1.1.0.tgz",
|
|
587
|
+
"integrity": "sha512-l2aFy5jALhniG5HgqrD6jXLi/rUWrKvqN/qJx6yoJsgKhblVd+iqqU4RCXavm/jPityDo5TCvKMnpjKnOriy0w==",
|
|
588
|
+
"license": "MIT"
|
|
589
|
+
},
|
|
590
|
+
"node_modules/@types/json-schema": {
|
|
591
|
+
"version": "7.0.15",
|
|
592
|
+
"resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.15.tgz",
|
|
593
|
+
"integrity": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==",
|
|
594
|
+
"license": "MIT"
|
|
595
|
+
},
|
|
596
|
+
"node_modules/@types/lodash": {
|
|
597
|
+
"version": "4.17.24",
|
|
598
|
+
"resolved": "https://registry.npmjs.org/@types/lodash/-/lodash-4.17.24.tgz",
|
|
599
|
+
"integrity": "sha512-gIW7lQLZbue7lRSWEFql49QJJWThrTFFeIMJdp3eH4tKoxm1OvEPg02rm4wCCSHS0cL3/Fizimb35b7k8atwsQ==",
|
|
600
|
+
"license": "MIT"
|
|
601
|
+
},
|
|
602
|
+
"node_modules/@types/node": {
|
|
603
|
+
"version": "22.20.1",
|
|
604
|
+
"resolved": "https://registry.npmjs.org/@types/node/-/node-22.20.1.tgz",
|
|
605
|
+
"integrity": "sha512-EANqOCF9QFyra+4pfxUcX9STKJpCLjMbObVzljIJomAWSnuSIEAvyzEU53GaajbXJEgdh0iEcPL+DGvpUd4k1Q==",
|
|
606
|
+
"dev": true,
|
|
607
|
+
"license": "MIT",
|
|
608
|
+
"dependencies": {
|
|
609
|
+
"undici-types": "~6.21.0"
|
|
610
|
+
}
|
|
611
|
+
},
|
|
612
|
+
"node_modules/@typescript/typescript-aix-ppc64": {
|
|
613
|
+
"version": "7.0.2",
|
|
614
|
+
"resolved": "https://registry.npmjs.org/@typescript/typescript-aix-ppc64/-/typescript-aix-ppc64-7.0.2.tgz",
|
|
615
|
+
"integrity": "sha512-MTKKkWB7p/0E9xi1d1tHtZ5PiLkGEMIq88pK2CubZjOsLtYTLqhgIgi6zepFa+9GHZ6h05NMCkQxGKiPXMxXtQ==",
|
|
616
|
+
"cpu": [
|
|
617
|
+
"ppc64"
|
|
618
|
+
],
|
|
619
|
+
"dev": true,
|
|
620
|
+
"license": "Apache-2.0",
|
|
621
|
+
"optional": true,
|
|
622
|
+
"os": [
|
|
623
|
+
"aix"
|
|
624
|
+
],
|
|
625
|
+
"engines": {
|
|
626
|
+
"node": ">=16.20.0"
|
|
627
|
+
}
|
|
628
|
+
},
|
|
629
|
+
"node_modules/@typescript/typescript-darwin-arm64": {
|
|
630
|
+
"version": "7.0.2",
|
|
631
|
+
"resolved": "https://registry.npmjs.org/@typescript/typescript-darwin-arm64/-/typescript-darwin-arm64-7.0.2.tgz",
|
|
632
|
+
"integrity": "sha512-gowzar9MwS/aRWp6f3a4KUqzRjAZjOsmGNCM6LcTgXum+dBfgsBVMN+AgvOCCbguXyick6LJhpBszxMebJ8syA==",
|
|
633
|
+
"cpu": [
|
|
634
|
+
"arm64"
|
|
635
|
+
],
|
|
636
|
+
"dev": true,
|
|
637
|
+
"license": "Apache-2.0",
|
|
638
|
+
"optional": true,
|
|
639
|
+
"os": [
|
|
640
|
+
"darwin"
|
|
641
|
+
],
|
|
642
|
+
"engines": {
|
|
643
|
+
"node": ">=16.20.0"
|
|
644
|
+
}
|
|
645
|
+
},
|
|
646
|
+
"node_modules/@typescript/typescript-darwin-x64": {
|
|
647
|
+
"version": "7.0.2",
|
|
648
|
+
"resolved": "https://registry.npmjs.org/@typescript/typescript-darwin-x64/-/typescript-darwin-x64-7.0.2.tgz",
|
|
649
|
+
"integrity": "sha512-SZ9xZInqApNlNGc9s0W1VSsktYSOe9cFqNOIqmN1Gs8SmkjKZYFt017G4VwPxASInODuAdbTW7sXiFUf893RgA==",
|
|
650
|
+
"cpu": [
|
|
651
|
+
"x64"
|
|
652
|
+
],
|
|
653
|
+
"dev": true,
|
|
654
|
+
"license": "Apache-2.0",
|
|
655
|
+
"optional": true,
|
|
656
|
+
"os": [
|
|
657
|
+
"darwin"
|
|
658
|
+
],
|
|
659
|
+
"engines": {
|
|
660
|
+
"node": ">=16.20.0"
|
|
661
|
+
}
|
|
662
|
+
},
|
|
663
|
+
"node_modules/@typescript/typescript-freebsd-arm64": {
|
|
664
|
+
"version": "7.0.2",
|
|
665
|
+
"resolved": "https://registry.npmjs.org/@typescript/typescript-freebsd-arm64/-/typescript-freebsd-arm64-7.0.2.tgz",
|
|
666
|
+
"integrity": "sha512-W5NH4y/J0plIIS5b2xvTEkU7JFxyqdMAOgf+Ilhl0vHQXKO5dZoxd+C/jEtq56c4F3wk71RB4BMRQ2XdI+bwYQ==",
|
|
667
|
+
"cpu": [
|
|
668
|
+
"arm64"
|
|
669
|
+
],
|
|
670
|
+
"dev": true,
|
|
671
|
+
"license": "Apache-2.0",
|
|
672
|
+
"optional": true,
|
|
673
|
+
"os": [
|
|
674
|
+
"freebsd"
|
|
675
|
+
],
|
|
676
|
+
"engines": {
|
|
677
|
+
"node": ">=16.20.0"
|
|
678
|
+
}
|
|
679
|
+
},
|
|
680
|
+
"node_modules/@typescript/typescript-freebsd-x64": {
|
|
681
|
+
"version": "7.0.2",
|
|
682
|
+
"resolved": "https://registry.npmjs.org/@typescript/typescript-freebsd-x64/-/typescript-freebsd-x64-7.0.2.tgz",
|
|
683
|
+
"integrity": "sha512-UMGDx5sTpzNw3WiPebH7l90IWfJggEd+egHt/q6p7/Cm3zqoV7VxkGXt+3DxPIw8CcmvAB0j3sVVfbhX+M4Tpw==",
|
|
684
|
+
"cpu": [
|
|
685
|
+
"x64"
|
|
686
|
+
],
|
|
687
|
+
"dev": true,
|
|
688
|
+
"license": "Apache-2.0",
|
|
689
|
+
"optional": true,
|
|
690
|
+
"os": [
|
|
691
|
+
"freebsd"
|
|
692
|
+
],
|
|
693
|
+
"engines": {
|
|
694
|
+
"node": ">=16.20.0"
|
|
695
|
+
}
|
|
696
|
+
},
|
|
697
|
+
"node_modules/@typescript/typescript-linux-arm": {
|
|
698
|
+
"version": "7.0.2",
|
|
699
|
+
"resolved": "https://registry.npmjs.org/@typescript/typescript-linux-arm/-/typescript-linux-arm-7.0.2.tgz",
|
|
700
|
+
"integrity": "sha512-gffT3xPz9sR7j/YJExkyPntrI0P2EP9XbOyWzth2/Gs0RstK+90RBcO0ncXoXy/beYll1SXw846Nf2zdnEz0QQ==",
|
|
701
|
+
"cpu": [
|
|
702
|
+
"arm"
|
|
703
|
+
],
|
|
704
|
+
"dev": true,
|
|
705
|
+
"license": "Apache-2.0",
|
|
706
|
+
"optional": true,
|
|
707
|
+
"os": [
|
|
708
|
+
"linux"
|
|
709
|
+
],
|
|
710
|
+
"engines": {
|
|
711
|
+
"node": ">=16.20.0"
|
|
712
|
+
}
|
|
713
|
+
},
|
|
714
|
+
"node_modules/@typescript/typescript-linux-arm64": {
|
|
715
|
+
"version": "7.0.2",
|
|
716
|
+
"resolved": "https://registry.npmjs.org/@typescript/typescript-linux-arm64/-/typescript-linux-arm64-7.0.2.tgz",
|
|
717
|
+
"integrity": "sha512-Qh4eU4/y3yDjnfjjyPYihMj5/ODIlmt+Bzu17OI+fiSRDW57QmU5SiN63exPRNJPKUzcc1INa1NXdrJ+MqHjUQ==",
|
|
718
|
+
"cpu": [
|
|
719
|
+
"arm64"
|
|
720
|
+
],
|
|
721
|
+
"dev": true,
|
|
722
|
+
"license": "Apache-2.0",
|
|
723
|
+
"optional": true,
|
|
724
|
+
"os": [
|
|
725
|
+
"linux"
|
|
726
|
+
],
|
|
727
|
+
"engines": {
|
|
728
|
+
"node": ">=16.20.0"
|
|
729
|
+
}
|
|
730
|
+
},
|
|
731
|
+
"node_modules/@typescript/typescript-linux-loong64": {
|
|
732
|
+
"version": "7.0.2",
|
|
733
|
+
"resolved": "https://registry.npmjs.org/@typescript/typescript-linux-loong64/-/typescript-linux-loong64-7.0.2.tgz",
|
|
734
|
+
"integrity": "sha512-uEHck9i8hoAzXPiYRib1O7miOnz23SxIeVl6F4LXox+qov1K35jHcEW6VHKvZI+pyvl7fZEP4MCU5LYvIq1GuQ==",
|
|
735
|
+
"cpu": [
|
|
736
|
+
"loong64"
|
|
737
|
+
],
|
|
738
|
+
"dev": true,
|
|
739
|
+
"license": "Apache-2.0",
|
|
740
|
+
"optional": true,
|
|
741
|
+
"os": [
|
|
742
|
+
"linux"
|
|
743
|
+
],
|
|
744
|
+
"engines": {
|
|
745
|
+
"node": ">=16.20.0"
|
|
746
|
+
}
|
|
747
|
+
},
|
|
748
|
+
"node_modules/@typescript/typescript-linux-mips64el": {
|
|
749
|
+
"version": "7.0.2",
|
|
750
|
+
"resolved": "https://registry.npmjs.org/@typescript/typescript-linux-mips64el/-/typescript-linux-mips64el-7.0.2.tgz",
|
|
751
|
+
"integrity": "sha512-R4KvAMnE43W5Qeqb0Ly56O3mWMWIAgsMyz36DCaycd5nbg/9kzm0liw3JocfRqyJY0KPmzFjbswozXyW0DnIYA==",
|
|
752
|
+
"cpu": [
|
|
753
|
+
"mips64el"
|
|
754
|
+
],
|
|
755
|
+
"dev": true,
|
|
756
|
+
"license": "Apache-2.0",
|
|
757
|
+
"optional": true,
|
|
758
|
+
"os": [
|
|
759
|
+
"linux"
|
|
760
|
+
],
|
|
761
|
+
"engines": {
|
|
762
|
+
"node": ">=16.20.0"
|
|
763
|
+
}
|
|
764
|
+
},
|
|
765
|
+
"node_modules/@typescript/typescript-linux-ppc64": {
|
|
766
|
+
"version": "7.0.2",
|
|
767
|
+
"resolved": "https://registry.npmjs.org/@typescript/typescript-linux-ppc64/-/typescript-linux-ppc64-7.0.2.tgz",
|
|
768
|
+
"integrity": "sha512-DORx5b3sd/4S7eayxm4FQv+A7CrkUIGRaHiwI8oiHTAI1fAPWhF4J0vAlkC8biAlHSVVwxMQ3tjZ2/DVbnQiiA==",
|
|
769
|
+
"cpu": [
|
|
770
|
+
"ppc64"
|
|
771
|
+
],
|
|
772
|
+
"dev": true,
|
|
773
|
+
"license": "Apache-2.0",
|
|
774
|
+
"optional": true,
|
|
775
|
+
"os": [
|
|
776
|
+
"linux"
|
|
777
|
+
],
|
|
778
|
+
"engines": {
|
|
779
|
+
"node": ">=16.20.0"
|
|
780
|
+
}
|
|
781
|
+
},
|
|
782
|
+
"node_modules/@typescript/typescript-linux-riscv64": {
|
|
783
|
+
"version": "7.0.2",
|
|
784
|
+
"resolved": "https://registry.npmjs.org/@typescript/typescript-linux-riscv64/-/typescript-linux-riscv64-7.0.2.tgz",
|
|
785
|
+
"integrity": "sha512-wf0jqEDOjrPRnKwYRyyJDRo11KMbvMFrU+q4zqKyChODBzvlkbhNQfKvLxQCcwTpdDaXSHZTVuh0JoCrKCUMHQ==",
|
|
786
|
+
"cpu": [
|
|
787
|
+
"riscv64"
|
|
788
|
+
],
|
|
789
|
+
"dev": true,
|
|
790
|
+
"license": "Apache-2.0",
|
|
791
|
+
"optional": true,
|
|
792
|
+
"os": [
|
|
793
|
+
"linux"
|
|
794
|
+
],
|
|
795
|
+
"engines": {
|
|
796
|
+
"node": ">=16.20.0"
|
|
797
|
+
}
|
|
798
|
+
},
|
|
799
|
+
"node_modules/@typescript/typescript-linux-s390x": {
|
|
800
|
+
"version": "7.0.2",
|
|
801
|
+
"resolved": "https://registry.npmjs.org/@typescript/typescript-linux-s390x/-/typescript-linux-s390x-7.0.2.tgz",
|
|
802
|
+
"integrity": "sha512-IkwJc3L7yhytWd/ewjyxNDfOmswCm9GWMJT/ue/dU4aZNbwZeYAetq42VyLmsmSjvoX7z74X6ZaYCtzAr0EuGw==",
|
|
803
|
+
"cpu": [
|
|
804
|
+
"s390x"
|
|
805
|
+
],
|
|
806
|
+
"dev": true,
|
|
807
|
+
"license": "Apache-2.0",
|
|
808
|
+
"optional": true,
|
|
809
|
+
"os": [
|
|
810
|
+
"linux"
|
|
811
|
+
],
|
|
812
|
+
"engines": {
|
|
813
|
+
"node": ">=16.20.0"
|
|
814
|
+
}
|
|
815
|
+
},
|
|
816
|
+
"node_modules/@typescript/typescript-linux-x64": {
|
|
817
|
+
"version": "7.0.2",
|
|
818
|
+
"resolved": "https://registry.npmjs.org/@typescript/typescript-linux-x64/-/typescript-linux-x64-7.0.2.tgz",
|
|
819
|
+
"integrity": "sha512-EYdf2cNg7rgCWJnxCdJ+F3V39O8ihb37eHAu1LK8oAFizgTQbPOK7zHHXbPt8rX24COqODXeI3sIf0fCXG7H/A==",
|
|
820
|
+
"cpu": [
|
|
821
|
+
"x64"
|
|
822
|
+
],
|
|
823
|
+
"dev": true,
|
|
824
|
+
"license": "Apache-2.0",
|
|
825
|
+
"optional": true,
|
|
826
|
+
"os": [
|
|
827
|
+
"linux"
|
|
828
|
+
],
|
|
829
|
+
"engines": {
|
|
830
|
+
"node": ">=16.20.0"
|
|
831
|
+
}
|
|
832
|
+
},
|
|
833
|
+
"node_modules/@typescript/typescript-netbsd-arm64": {
|
|
834
|
+
"version": "7.0.2",
|
|
835
|
+
"resolved": "https://registry.npmjs.org/@typescript/typescript-netbsd-arm64/-/typescript-netbsd-arm64-7.0.2.tgz",
|
|
836
|
+
"integrity": "sha512-+polYF4MF04aPpO5FTkHran9yUQDSXqy5GiSDKpsll5jy3l3+g9QLhpf39T+ePtefhXLOGrLl0QIjkQP6VnelA==",
|
|
837
|
+
"cpu": [
|
|
838
|
+
"arm64"
|
|
839
|
+
],
|
|
840
|
+
"dev": true,
|
|
841
|
+
"license": "Apache-2.0",
|
|
842
|
+
"optional": true,
|
|
843
|
+
"os": [
|
|
844
|
+
"netbsd"
|
|
845
|
+
],
|
|
846
|
+
"engines": {
|
|
847
|
+
"node": ">=16.20.0"
|
|
848
|
+
}
|
|
849
|
+
},
|
|
850
|
+
"node_modules/@typescript/typescript-netbsd-x64": {
|
|
851
|
+
"version": "7.0.2",
|
|
852
|
+
"resolved": "https://registry.npmjs.org/@typescript/typescript-netbsd-x64/-/typescript-netbsd-x64-7.0.2.tgz",
|
|
853
|
+
"integrity": "sha512-8YIT0EHM/3dq10ZOVF/A7pc/YSMtbcecct4rWtexrnSCHOPcpC2KTLXfTCR6vDpnSiY12heNb1GiN/wu+T/FyA==",
|
|
854
|
+
"cpu": [
|
|
855
|
+
"x64"
|
|
856
|
+
],
|
|
857
|
+
"dev": true,
|
|
858
|
+
"license": "Apache-2.0",
|
|
859
|
+
"optional": true,
|
|
860
|
+
"os": [
|
|
861
|
+
"netbsd"
|
|
862
|
+
],
|
|
863
|
+
"engines": {
|
|
864
|
+
"node": ">=16.20.0"
|
|
865
|
+
}
|
|
866
|
+
},
|
|
867
|
+
"node_modules/@typescript/typescript-openbsd-arm64": {
|
|
868
|
+
"version": "7.0.2",
|
|
869
|
+
"resolved": "https://registry.npmjs.org/@typescript/typescript-openbsd-arm64/-/typescript-openbsd-arm64-7.0.2.tgz",
|
|
870
|
+
"integrity": "sha512-APT8+ClYnuYm1u9+kgGXoMj2VzWzcymwh2gNSQVySHfkRDGOTVkoWLjCmOQSaO+PoqQ57B0flRp9SA+7GnnkzQ==",
|
|
871
|
+
"cpu": [
|
|
872
|
+
"arm64"
|
|
873
|
+
],
|
|
874
|
+
"dev": true,
|
|
875
|
+
"license": "Apache-2.0",
|
|
876
|
+
"optional": true,
|
|
877
|
+
"os": [
|
|
878
|
+
"openbsd"
|
|
879
|
+
],
|
|
880
|
+
"engines": {
|
|
881
|
+
"node": ">=16.20.0"
|
|
882
|
+
}
|
|
883
|
+
},
|
|
884
|
+
"node_modules/@typescript/typescript-openbsd-x64": {
|
|
885
|
+
"version": "7.0.2",
|
|
886
|
+
"resolved": "https://registry.npmjs.org/@typescript/typescript-openbsd-x64/-/typescript-openbsd-x64-7.0.2.tgz",
|
|
887
|
+
"integrity": "sha512-yX7s+Q0Dln0Dt9tEzZsAjXXR/+ytBM7AlglaqyeMPxQszJ1JhlJdZ6jLA+IzldHtflX81em7lDao1xXu+aRRkg==",
|
|
888
|
+
"cpu": [
|
|
889
|
+
"x64"
|
|
890
|
+
],
|
|
891
|
+
"dev": true,
|
|
892
|
+
"license": "Apache-2.0",
|
|
893
|
+
"optional": true,
|
|
894
|
+
"os": [
|
|
895
|
+
"openbsd"
|
|
896
|
+
],
|
|
897
|
+
"engines": {
|
|
898
|
+
"node": ">=16.20.0"
|
|
899
|
+
}
|
|
900
|
+
},
|
|
901
|
+
"node_modules/@typescript/typescript-sunos-x64": {
|
|
902
|
+
"version": "7.0.2",
|
|
903
|
+
"resolved": "https://registry.npmjs.org/@typescript/typescript-sunos-x64/-/typescript-sunos-x64-7.0.2.tgz",
|
|
904
|
+
"integrity": "sha512-dLJDGaLZ1D4HPQn62u1n8mBDkJREwMsAkCdkwd4Ieqw+x3TUyTsqY0YiBCtE6H6OzzgGk3iuZ3vFWRS+E8/d1g==",
|
|
905
|
+
"cpu": [
|
|
906
|
+
"x64"
|
|
907
|
+
],
|
|
908
|
+
"dev": true,
|
|
909
|
+
"license": "Apache-2.0",
|
|
910
|
+
"optional": true,
|
|
911
|
+
"os": [
|
|
912
|
+
"sunos"
|
|
913
|
+
],
|
|
914
|
+
"engines": {
|
|
915
|
+
"node": ">=16.20.0"
|
|
916
|
+
}
|
|
917
|
+
},
|
|
918
|
+
"node_modules/@typescript/typescript-win32-arm64": {
|
|
919
|
+
"version": "7.0.2",
|
|
920
|
+
"resolved": "https://registry.npmjs.org/@typescript/typescript-win32-arm64/-/typescript-win32-arm64-7.0.2.tgz",
|
|
921
|
+
"integrity": "sha512-Gyl1Vy6OsWesLzmq+EP0Fb7b4Nid5232AvcA2SFcdYreldpNtYFFofPjnt62y9hQy7VTaZp65ICJjuAQRaVcIQ==",
|
|
922
|
+
"cpu": [
|
|
923
|
+
"arm64"
|
|
924
|
+
],
|
|
925
|
+
"dev": true,
|
|
926
|
+
"license": "Apache-2.0",
|
|
927
|
+
"optional": true,
|
|
928
|
+
"os": [
|
|
929
|
+
"win32"
|
|
930
|
+
],
|
|
931
|
+
"engines": {
|
|
932
|
+
"node": ">=16.20.0"
|
|
933
|
+
}
|
|
934
|
+
},
|
|
935
|
+
"node_modules/@typescript/typescript-win32-x64": {
|
|
936
|
+
"version": "7.0.2",
|
|
937
|
+
"resolved": "https://registry.npmjs.org/@typescript/typescript-win32-x64/-/typescript-win32-x64-7.0.2.tgz",
|
|
938
|
+
"integrity": "sha512-0BQ3HkAHHlKLSp1qRvf3SUhGpGsDuhB/jgFw75guyqbxJqEaS0Cw/VFO8i2nHglJUzQCRtMMR/IBAKE3ETMC4g==",
|
|
939
|
+
"cpu": [
|
|
940
|
+
"x64"
|
|
941
|
+
],
|
|
942
|
+
"dev": true,
|
|
943
|
+
"license": "Apache-2.0",
|
|
944
|
+
"optional": true,
|
|
945
|
+
"os": [
|
|
946
|
+
"win32"
|
|
947
|
+
],
|
|
948
|
+
"engines": {
|
|
949
|
+
"node": ">=16.20.0"
|
|
950
|
+
}
|
|
951
|
+
},
|
|
952
|
+
"node_modules/@vercel/oidc": {
|
|
953
|
+
"version": "3.1.0",
|
|
954
|
+
"resolved": "https://registry.npmjs.org/@vercel/oidc/-/oidc-3.1.0.tgz",
|
|
955
|
+
"integrity": "sha512-Fw28YZpRnA3cAHHDlkt7xQHiJ0fcL+NRcIqsocZQUSmbzeIKRpwttJjik5ZGanXP+vlA4SbTg+AbA3bP363l+w==",
|
|
956
|
+
"license": "Apache-2.0",
|
|
957
|
+
"engines": {
|
|
958
|
+
"node": ">= 20"
|
|
959
|
+
}
|
|
960
|
+
},
|
|
961
|
+
"node_modules/accepts": {
|
|
962
|
+
"version": "2.0.0",
|
|
963
|
+
"resolved": "https://registry.npmjs.org/accepts/-/accepts-2.0.0.tgz",
|
|
964
|
+
"integrity": "sha512-5cvg6CtKwfgdmVqY1WIiXKc3Q1bkRqGLi+2W/6ao+6Y7gu/RCwRuAhGEzh5B4KlszSuTLgZYuqFqo5bImjNKng==",
|
|
965
|
+
"license": "MIT",
|
|
966
|
+
"dependencies": {
|
|
967
|
+
"mime-types": "^3.0.0",
|
|
968
|
+
"negotiator": "^1.0.0"
|
|
969
|
+
},
|
|
970
|
+
"engines": {
|
|
971
|
+
"node": ">= 0.6"
|
|
972
|
+
}
|
|
973
|
+
},
|
|
974
|
+
"node_modules/agents": {
|
|
975
|
+
"version": "0.10.2",
|
|
976
|
+
"resolved": "https://registry.npmjs.org/agents/-/agents-0.10.2.tgz",
|
|
977
|
+
"integrity": "sha512-zltFKKENDClZgIJB7aRneI8tRpnCbMbP4RGPh4t8OgqKHomxUNZJEqMrjcgwP/0FX1W9GGrrLJVo9Ez2ibHVvA==",
|
|
978
|
+
"license": "MIT",
|
|
979
|
+
"dependencies": {
|
|
980
|
+
"@babel/plugin-proposal-decorators": "^7.29.0",
|
|
981
|
+
"@cfworker/json-schema": "^4.1.1",
|
|
982
|
+
"@modelcontextprotocol/sdk": "1.29.0",
|
|
983
|
+
"@rolldown/plugin-babel": "^0.2.3",
|
|
984
|
+
"cron-schedule": "^6.0.0",
|
|
985
|
+
"json-schema": "^0.4.0",
|
|
986
|
+
"json-schema-to-typescript": "^15.0.4",
|
|
987
|
+
"mimetext": "^3.0.28",
|
|
988
|
+
"nanoid": "^5.1.7",
|
|
989
|
+
"partyserver": "^0.4.1",
|
|
990
|
+
"partysocket": "1.1.16",
|
|
991
|
+
"picomatch": "^4.0.4",
|
|
992
|
+
"yargs": "^18.0.0"
|
|
993
|
+
},
|
|
994
|
+
"bin": {
|
|
995
|
+
"agents": "dist/cli/index.js"
|
|
996
|
+
},
|
|
997
|
+
"peerDependencies": {
|
|
998
|
+
"@ai-sdk/openai": "^3.0.0",
|
|
999
|
+
"@ai-sdk/react": "^3.0.0",
|
|
1000
|
+
"@cloudflare/ai-chat": "^0.4.2",
|
|
1001
|
+
"@cloudflare/codemode": "^0.3.4",
|
|
1002
|
+
"@x402/core": "^2.0.0",
|
|
1003
|
+
"@x402/evm": "^2.0.0",
|
|
1004
|
+
"ai": "^6.0.0",
|
|
1005
|
+
"react": "^19.0.0",
|
|
1006
|
+
"viem": ">=2.0.0",
|
|
1007
|
+
"vite": ">=6.0.0 <9.0.0",
|
|
1008
|
+
"zod": "^4.0.0"
|
|
1009
|
+
},
|
|
1010
|
+
"peerDependenciesMeta": {
|
|
1011
|
+
"@ai-sdk/openai": {
|
|
1012
|
+
"optional": true
|
|
1013
|
+
},
|
|
1014
|
+
"@ai-sdk/react": {
|
|
1015
|
+
"optional": true
|
|
1016
|
+
},
|
|
1017
|
+
"@cloudflare/ai-chat": {
|
|
1018
|
+
"optional": true
|
|
1019
|
+
},
|
|
1020
|
+
"@cloudflare/codemode": {
|
|
1021
|
+
"optional": true
|
|
1022
|
+
},
|
|
1023
|
+
"@x402/core": {
|
|
1024
|
+
"optional": true
|
|
1025
|
+
},
|
|
1026
|
+
"@x402/evm": {
|
|
1027
|
+
"optional": true
|
|
1028
|
+
},
|
|
1029
|
+
"viem": {
|
|
1030
|
+
"optional": true
|
|
1031
|
+
},
|
|
1032
|
+
"vite": {
|
|
1033
|
+
"optional": true
|
|
1034
|
+
}
|
|
1035
|
+
}
|
|
1036
|
+
},
|
|
1037
|
+
"node_modules/ai": {
|
|
1038
|
+
"version": "5.0.210",
|
|
1039
|
+
"resolved": "https://registry.npmjs.org/ai/-/ai-5.0.210.tgz",
|
|
1040
|
+
"integrity": "sha512-HAYfzP0vMU3/1GzjQkpJT7/x7BqacIYimAMgm6wXZKjZfOHGv1458hLDqYcC7o9BuAr23sFijvL41MSx9KEnEQ==",
|
|
1041
|
+
"license": "Apache-2.0",
|
|
1042
|
+
"dependencies": {
|
|
1043
|
+
"@ai-sdk/gateway": "2.0.109",
|
|
1044
|
+
"@ai-sdk/provider": "2.0.3",
|
|
1045
|
+
"@ai-sdk/provider-utils": "3.0.28",
|
|
1046
|
+
"@opentelemetry/api": "1.9.0"
|
|
1047
|
+
},
|
|
1048
|
+
"engines": {
|
|
1049
|
+
"node": ">=18"
|
|
1050
|
+
},
|
|
1051
|
+
"peerDependencies": {
|
|
1052
|
+
"zod": "^3.25.76 || ^4.1.8"
|
|
1053
|
+
}
|
|
1054
|
+
},
|
|
1055
|
+
"node_modules/ajv": {
|
|
1056
|
+
"version": "8.20.0",
|
|
1057
|
+
"resolved": "https://registry.npmjs.org/ajv/-/ajv-8.20.0.tgz",
|
|
1058
|
+
"integrity": "sha512-Thbli+OlOj+iMPYFBVBfJ3OmCAnaSyNn4M1vz9T6Gka5Jt9ba/HIR56joy65tY6kx/FCF5VXNB819Y7/GUrBGA==",
|
|
1059
|
+
"license": "MIT",
|
|
1060
|
+
"dependencies": {
|
|
1061
|
+
"fast-deep-equal": "^3.1.3",
|
|
1062
|
+
"fast-uri": "^3.0.1",
|
|
1063
|
+
"json-schema-traverse": "^1.0.0",
|
|
1064
|
+
"require-from-string": "^2.0.2"
|
|
1065
|
+
},
|
|
1066
|
+
"funding": {
|
|
1067
|
+
"type": "github",
|
|
1068
|
+
"url": "https://github.com/sponsors/epoberezkin"
|
|
1069
|
+
}
|
|
1070
|
+
},
|
|
1071
|
+
"node_modules/ajv-formats": {
|
|
1072
|
+
"version": "3.0.1",
|
|
1073
|
+
"resolved": "https://registry.npmjs.org/ajv-formats/-/ajv-formats-3.0.1.tgz",
|
|
1074
|
+
"integrity": "sha512-8iUql50EUR+uUcdRQ3HDqa6EVyo3docL8g5WJ3FNcWmu62IbkGUue/pEyLBW8VGKKucTPgqeks4fIU1DA4yowQ==",
|
|
1075
|
+
"license": "MIT",
|
|
1076
|
+
"dependencies": {
|
|
1077
|
+
"ajv": "^8.0.0"
|
|
1078
|
+
},
|
|
1079
|
+
"peerDependencies": {
|
|
1080
|
+
"ajv": "^8.0.0"
|
|
1081
|
+
},
|
|
1082
|
+
"peerDependenciesMeta": {
|
|
1083
|
+
"ajv": {
|
|
1084
|
+
"optional": true
|
|
1085
|
+
}
|
|
1086
|
+
}
|
|
1087
|
+
},
|
|
1088
|
+
"node_modules/ansi-regex": {
|
|
1089
|
+
"version": "6.2.2",
|
|
1090
|
+
"resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.2.2.tgz",
|
|
1091
|
+
"integrity": "sha512-Bq3SmSpyFHaWjPk8If9yc6svM8c56dB5BAtW4Qbw5jHTwwXXcTLoRMkpDJp6VL0XzlWaCHTXrkFURMYmD0sLqg==",
|
|
1092
|
+
"license": "MIT",
|
|
1093
|
+
"engines": {
|
|
1094
|
+
"node": ">=12"
|
|
1095
|
+
},
|
|
1096
|
+
"funding": {
|
|
1097
|
+
"url": "https://github.com/chalk/ansi-regex?sponsor=1"
|
|
1098
|
+
}
|
|
1099
|
+
},
|
|
1100
|
+
"node_modules/ansi-styles": {
|
|
1101
|
+
"version": "6.2.3",
|
|
1102
|
+
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.3.tgz",
|
|
1103
|
+
"integrity": "sha512-4Dj6M28JB+oAH8kFkTLUo+a2jwOFkuqb3yucU0CANcRRUbxS0cP0nZYCGjcc3BNXwRIsUVmDGgzawme7zvJHvg==",
|
|
1104
|
+
"license": "MIT",
|
|
1105
|
+
"engines": {
|
|
1106
|
+
"node": ">=12"
|
|
1107
|
+
},
|
|
1108
|
+
"funding": {
|
|
1109
|
+
"url": "https://github.com/chalk/ansi-styles?sponsor=1"
|
|
1110
|
+
}
|
|
1111
|
+
},
|
|
1112
|
+
"node_modules/argparse": {
|
|
1113
|
+
"version": "2.0.1",
|
|
1114
|
+
"resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz",
|
|
1115
|
+
"integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==",
|
|
1116
|
+
"license": "Python-2.0"
|
|
1117
|
+
},
|
|
1118
|
+
"node_modules/blake3": {
|
|
1119
|
+
"version": "2.1.7",
|
|
1120
|
+
"resolved": "https://registry.npmjs.org/blake3/-/blake3-2.1.7.tgz",
|
|
1121
|
+
"integrity": "sha512-5d+TdKJvju96IyEaGJ0eO6CHbckWi+NBrCezGYM/WsnI3R03aLL2TWfsuZSh1rs0fTv/L3ps/r0vykjYurcIwA==",
|
|
1122
|
+
"hasInstallScript": true,
|
|
1123
|
+
"license": "MIT"
|
|
1124
|
+
},
|
|
1125
|
+
"node_modules/body-parser": {
|
|
1126
|
+
"version": "2.3.0",
|
|
1127
|
+
"resolved": "https://registry.npmjs.org/body-parser/-/body-parser-2.3.0.tgz",
|
|
1128
|
+
"integrity": "sha512-2cGmJupaNgg+QUwVLAucDuWuoMZ6EX9iHDRswZ5lsNYEmwPaRknMPCLZz07yTzVq/83p4o/wzbDZbBrTvGGTIw==",
|
|
1129
|
+
"license": "MIT",
|
|
1130
|
+
"dependencies": {
|
|
1131
|
+
"bytes": "^3.1.2",
|
|
1132
|
+
"content-type": "^2.0.0",
|
|
1133
|
+
"debug": "^4.4.3",
|
|
1134
|
+
"http-errors": "^2.0.1",
|
|
1135
|
+
"iconv-lite": "^0.7.2",
|
|
1136
|
+
"on-finished": "^2.4.1",
|
|
1137
|
+
"qs": "^6.15.2",
|
|
1138
|
+
"raw-body": "^3.0.2",
|
|
1139
|
+
"type-is": "^2.1.0"
|
|
1140
|
+
},
|
|
1141
|
+
"engines": {
|
|
1142
|
+
"node": ">=18"
|
|
1143
|
+
},
|
|
1144
|
+
"funding": {
|
|
1145
|
+
"type": "opencollective",
|
|
1146
|
+
"url": "https://opencollective.com/express"
|
|
1147
|
+
}
|
|
1148
|
+
},
|
|
1149
|
+
"node_modules/body-parser/node_modules/content-type": {
|
|
1150
|
+
"version": "2.0.0",
|
|
1151
|
+
"resolved": "https://registry.npmjs.org/content-type/-/content-type-2.0.0.tgz",
|
|
1152
|
+
"integrity": "sha512-j/O/d7GcZCyNl7/hwZAb606rzqkyvaDctLmckbxLzHvFBzTJHuGEdodATcP3yIRoDrLHkIATJuvzbFlp/ki2cQ==",
|
|
1153
|
+
"license": "MIT",
|
|
1154
|
+
"engines": {
|
|
1155
|
+
"node": ">=18"
|
|
1156
|
+
},
|
|
1157
|
+
"funding": {
|
|
1158
|
+
"type": "opencollective",
|
|
1159
|
+
"url": "https://opencollective.com/express"
|
|
1160
|
+
}
|
|
1161
|
+
},
|
|
1162
|
+
"node_modules/bytes": {
|
|
1163
|
+
"version": "3.1.2",
|
|
1164
|
+
"resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz",
|
|
1165
|
+
"integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==",
|
|
1166
|
+
"license": "MIT",
|
|
1167
|
+
"engines": {
|
|
1168
|
+
"node": ">= 0.8"
|
|
1169
|
+
}
|
|
1170
|
+
},
|
|
1171
|
+
"node_modules/call-bind-apply-helpers": {
|
|
1172
|
+
"version": "1.0.2",
|
|
1173
|
+
"resolved": "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz",
|
|
1174
|
+
"integrity": "sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==",
|
|
1175
|
+
"license": "MIT",
|
|
1176
|
+
"dependencies": {
|
|
1177
|
+
"es-errors": "^1.3.0",
|
|
1178
|
+
"function-bind": "^1.1.2"
|
|
1179
|
+
},
|
|
1180
|
+
"engines": {
|
|
1181
|
+
"node": ">= 0.4"
|
|
1182
|
+
}
|
|
1183
|
+
},
|
|
1184
|
+
"node_modules/call-bound": {
|
|
1185
|
+
"version": "1.0.4",
|
|
1186
|
+
"resolved": "https://registry.npmjs.org/call-bound/-/call-bound-1.0.4.tgz",
|
|
1187
|
+
"integrity": "sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg==",
|
|
1188
|
+
"license": "MIT",
|
|
1189
|
+
"dependencies": {
|
|
1190
|
+
"call-bind-apply-helpers": "^1.0.2",
|
|
1191
|
+
"get-intrinsic": "^1.3.0"
|
|
1192
|
+
},
|
|
1193
|
+
"engines": {
|
|
1194
|
+
"node": ">= 0.4"
|
|
1195
|
+
},
|
|
1196
|
+
"funding": {
|
|
1197
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
1198
|
+
}
|
|
1199
|
+
},
|
|
1200
|
+
"node_modules/cliui": {
|
|
1201
|
+
"version": "9.0.1",
|
|
1202
|
+
"resolved": "https://registry.npmjs.org/cliui/-/cliui-9.0.1.tgz",
|
|
1203
|
+
"integrity": "sha512-k7ndgKhwoQveBL+/1tqGJYNz097I7WOvwbmmU2AR5+magtbjPWQTS1C5vzGkBC8Ym8UWRzfKUzUUqFLypY4Q+w==",
|
|
1204
|
+
"license": "ISC",
|
|
1205
|
+
"dependencies": {
|
|
1206
|
+
"string-width": "^7.2.0",
|
|
1207
|
+
"strip-ansi": "^7.1.0",
|
|
1208
|
+
"wrap-ansi": "^9.0.0"
|
|
1209
|
+
},
|
|
1210
|
+
"engines": {
|
|
1211
|
+
"node": ">=20"
|
|
1212
|
+
}
|
|
1213
|
+
},
|
|
1214
|
+
"node_modules/content-disposition": {
|
|
1215
|
+
"version": "1.1.0",
|
|
1216
|
+
"resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-1.1.0.tgz",
|
|
1217
|
+
"integrity": "sha512-5jRCH9Z/+DRP7rkvY83B+yGIGX96OYdJmzngqnw2SBSxqCFPd0w2km3s5iawpGX8krnwSGmF0FW5Nhr0Hfai3g==",
|
|
1218
|
+
"license": "MIT",
|
|
1219
|
+
"engines": {
|
|
1220
|
+
"node": ">=18"
|
|
1221
|
+
},
|
|
1222
|
+
"funding": {
|
|
1223
|
+
"type": "opencollective",
|
|
1224
|
+
"url": "https://opencollective.com/express"
|
|
1225
|
+
}
|
|
1226
|
+
},
|
|
1227
|
+
"node_modules/content-type": {
|
|
1228
|
+
"version": "1.0.5",
|
|
1229
|
+
"resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz",
|
|
1230
|
+
"integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==",
|
|
1231
|
+
"license": "MIT",
|
|
1232
|
+
"engines": {
|
|
1233
|
+
"node": ">= 0.6"
|
|
1234
|
+
}
|
|
1235
|
+
},
|
|
1236
|
+
"node_modules/cookie": {
|
|
1237
|
+
"version": "0.7.2",
|
|
1238
|
+
"resolved": "https://registry.npmjs.org/cookie/-/cookie-0.7.2.tgz",
|
|
1239
|
+
"integrity": "sha512-yki5XnKuf750l50uGTllt6kKILY4nQ1eNIQatoXEByZ5dWgnKqbnqmTrBE5B4N7lrMJKQ2ytWMiTO2o0v6Ew/w==",
|
|
1240
|
+
"license": "MIT",
|
|
1241
|
+
"engines": {
|
|
1242
|
+
"node": ">= 0.6"
|
|
1243
|
+
}
|
|
1244
|
+
},
|
|
1245
|
+
"node_modules/cookie-signature": {
|
|
1246
|
+
"version": "1.2.2",
|
|
1247
|
+
"resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.2.2.tgz",
|
|
1248
|
+
"integrity": "sha512-D76uU73ulSXrD1UXF4KE2TMxVVwhsnCgfAyTg9k8P6KGZjlXKrOLe4dJQKI3Bxi5wjesZoFXJWElNWBjPZMbhg==",
|
|
1249
|
+
"license": "MIT",
|
|
1250
|
+
"engines": {
|
|
1251
|
+
"node": ">=6.6.0"
|
|
1252
|
+
}
|
|
1253
|
+
},
|
|
1254
|
+
"node_modules/core-js-pure": {
|
|
1255
|
+
"version": "3.49.0",
|
|
1256
|
+
"resolved": "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.49.0.tgz",
|
|
1257
|
+
"integrity": "sha512-XM4RFka59xATyJv/cS3O3Kml72hQXUeGRuuTmMYFxwzc9/7C8OYTaIR/Ji+Yt8DXzsFLNhat15cE/JP15HrCgw==",
|
|
1258
|
+
"hasInstallScript": true,
|
|
1259
|
+
"license": "MIT",
|
|
1260
|
+
"funding": {
|
|
1261
|
+
"type": "opencollective",
|
|
1262
|
+
"url": "https://opencollective.com/core-js"
|
|
1263
|
+
}
|
|
1264
|
+
},
|
|
1265
|
+
"node_modules/cors": {
|
|
1266
|
+
"version": "2.8.6",
|
|
1267
|
+
"resolved": "https://registry.npmjs.org/cors/-/cors-2.8.6.tgz",
|
|
1268
|
+
"integrity": "sha512-tJtZBBHA6vjIAaF6EnIaq6laBBP9aq/Y3ouVJjEfoHbRBcHBAHYcMh/w8LDrk2PvIMMq8gmopa5D4V8RmbrxGw==",
|
|
1269
|
+
"license": "MIT",
|
|
1270
|
+
"dependencies": {
|
|
1271
|
+
"object-assign": "^4",
|
|
1272
|
+
"vary": "^1"
|
|
1273
|
+
},
|
|
1274
|
+
"engines": {
|
|
1275
|
+
"node": ">= 0.10"
|
|
1276
|
+
},
|
|
1277
|
+
"funding": {
|
|
1278
|
+
"type": "opencollective",
|
|
1279
|
+
"url": "https://opencollective.com/express"
|
|
1280
|
+
}
|
|
1281
|
+
},
|
|
1282
|
+
"node_modules/cron-schedule": {
|
|
1283
|
+
"version": "6.0.0",
|
|
1284
|
+
"resolved": "https://registry.npmjs.org/cron-schedule/-/cron-schedule-6.0.0.tgz",
|
|
1285
|
+
"integrity": "sha512-BoZaseYGXOo5j5HUwTaegIog3JJbuH4BbrY9A1ArLjXpy+RWb3mV28F/9Gv1dDA7E2L8kngWva4NWisnLTyfgQ==",
|
|
1286
|
+
"license": "MIT",
|
|
1287
|
+
"engines": {
|
|
1288
|
+
"node": ">=20"
|
|
1289
|
+
}
|
|
1290
|
+
},
|
|
1291
|
+
"node_modules/cross-spawn": {
|
|
1292
|
+
"version": "7.0.6",
|
|
1293
|
+
"resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz",
|
|
1294
|
+
"integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==",
|
|
1295
|
+
"license": "MIT",
|
|
1296
|
+
"dependencies": {
|
|
1297
|
+
"path-key": "^3.1.0",
|
|
1298
|
+
"shebang-command": "^2.0.0",
|
|
1299
|
+
"which": "^2.0.1"
|
|
1300
|
+
},
|
|
1301
|
+
"engines": {
|
|
1302
|
+
"node": ">= 8"
|
|
1303
|
+
}
|
|
1304
|
+
},
|
|
1305
|
+
"node_modules/debug": {
|
|
1306
|
+
"version": "4.4.3",
|
|
1307
|
+
"resolved": "https://registry.npmjs.org/debug/-/debug-4.4.3.tgz",
|
|
1308
|
+
"integrity": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==",
|
|
1309
|
+
"license": "MIT",
|
|
1310
|
+
"dependencies": {
|
|
1311
|
+
"ms": "^2.1.3"
|
|
1312
|
+
},
|
|
1313
|
+
"engines": {
|
|
1314
|
+
"node": ">=6.0"
|
|
1315
|
+
},
|
|
1316
|
+
"peerDependenciesMeta": {
|
|
1317
|
+
"supports-color": {
|
|
1318
|
+
"optional": true
|
|
1319
|
+
}
|
|
1320
|
+
}
|
|
1321
|
+
},
|
|
1322
|
+
"node_modules/depd": {
|
|
1323
|
+
"version": "2.0.0",
|
|
1324
|
+
"resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz",
|
|
1325
|
+
"integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==",
|
|
1326
|
+
"license": "MIT",
|
|
1327
|
+
"engines": {
|
|
1328
|
+
"node": ">= 0.8"
|
|
1329
|
+
}
|
|
1330
|
+
},
|
|
1331
|
+
"node_modules/dunder-proto": {
|
|
1332
|
+
"version": "1.0.1",
|
|
1333
|
+
"resolved": "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.1.tgz",
|
|
1334
|
+
"integrity": "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==",
|
|
1335
|
+
"license": "MIT",
|
|
1336
|
+
"dependencies": {
|
|
1337
|
+
"call-bind-apply-helpers": "^1.0.1",
|
|
1338
|
+
"es-errors": "^1.3.0",
|
|
1339
|
+
"gopd": "^1.2.0"
|
|
1340
|
+
},
|
|
1341
|
+
"engines": {
|
|
1342
|
+
"node": ">= 0.4"
|
|
1343
|
+
}
|
|
1344
|
+
},
|
|
1345
|
+
"node_modules/ee-first": {
|
|
1346
|
+
"version": "1.1.1",
|
|
1347
|
+
"resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz",
|
|
1348
|
+
"integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==",
|
|
1349
|
+
"license": "MIT"
|
|
1350
|
+
},
|
|
1351
|
+
"node_modules/emoji-regex": {
|
|
1352
|
+
"version": "10.6.0",
|
|
1353
|
+
"resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-10.6.0.tgz",
|
|
1354
|
+
"integrity": "sha512-toUI84YS5YmxW219erniWD0CIVOo46xGKColeNQRgOzDorgBi1v4D71/OFzgD9GO2UGKIv1C3Sp8DAn0+j5w7A==",
|
|
1355
|
+
"license": "MIT"
|
|
1356
|
+
},
|
|
1357
|
+
"node_modules/encodeurl": {
|
|
1358
|
+
"version": "2.0.0",
|
|
1359
|
+
"resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-2.0.0.tgz",
|
|
1360
|
+
"integrity": "sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg==",
|
|
1361
|
+
"license": "MIT",
|
|
1362
|
+
"engines": {
|
|
1363
|
+
"node": ">= 0.8"
|
|
1364
|
+
}
|
|
1365
|
+
},
|
|
1366
|
+
"node_modules/es-define-property": {
|
|
1367
|
+
"version": "1.0.1",
|
|
1368
|
+
"resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.1.tgz",
|
|
1369
|
+
"integrity": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==",
|
|
1370
|
+
"license": "MIT",
|
|
1371
|
+
"engines": {
|
|
1372
|
+
"node": ">= 0.4"
|
|
1373
|
+
}
|
|
1374
|
+
},
|
|
1375
|
+
"node_modules/es-errors": {
|
|
1376
|
+
"version": "1.3.0",
|
|
1377
|
+
"resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz",
|
|
1378
|
+
"integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==",
|
|
1379
|
+
"license": "MIT",
|
|
1380
|
+
"engines": {
|
|
1381
|
+
"node": ">= 0.4"
|
|
1382
|
+
}
|
|
1383
|
+
},
|
|
1384
|
+
"node_modules/es-object-atoms": {
|
|
1385
|
+
"version": "1.1.2",
|
|
1386
|
+
"resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.1.2.tgz",
|
|
1387
|
+
"integrity": "sha512-HWcBoN6NileqtSydK2FqHbS/LoDd2pqrnQHLyJzBj4kOp/ky2MWMN694xOfkK8/SnUsW2DH7EfyVlydKCsm1Zw==",
|
|
1388
|
+
"license": "MIT",
|
|
1389
|
+
"dependencies": {
|
|
1390
|
+
"es-errors": "^1.3.0"
|
|
1391
|
+
},
|
|
1392
|
+
"engines": {
|
|
1393
|
+
"node": ">= 0.4"
|
|
1394
|
+
}
|
|
1395
|
+
},
|
|
1396
|
+
"node_modules/escalade": {
|
|
1397
|
+
"version": "3.2.0",
|
|
1398
|
+
"resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz",
|
|
1399
|
+
"integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==",
|
|
1400
|
+
"license": "MIT",
|
|
1401
|
+
"engines": {
|
|
1402
|
+
"node": ">=6"
|
|
1403
|
+
}
|
|
1404
|
+
},
|
|
1405
|
+
"node_modules/escape-html": {
|
|
1406
|
+
"version": "1.0.3",
|
|
1407
|
+
"resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz",
|
|
1408
|
+
"integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==",
|
|
1409
|
+
"license": "MIT"
|
|
1410
|
+
},
|
|
1411
|
+
"node_modules/etag": {
|
|
1412
|
+
"version": "1.8.1",
|
|
1413
|
+
"resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz",
|
|
1414
|
+
"integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==",
|
|
1415
|
+
"license": "MIT",
|
|
1416
|
+
"engines": {
|
|
1417
|
+
"node": ">= 0.6"
|
|
1418
|
+
}
|
|
1419
|
+
},
|
|
1420
|
+
"node_modules/event-target-polyfill": {
|
|
1421
|
+
"version": "0.0.4",
|
|
1422
|
+
"resolved": "https://registry.npmjs.org/event-target-polyfill/-/event-target-polyfill-0.0.4.tgz",
|
|
1423
|
+
"integrity": "sha512-Gs6RLjzlLRdT8X9ZipJdIZI/Y6/HhRLyq9RdDlCsnpxr/+Nn6bU2EFGuC94GjxqhM+Nmij2Vcq98yoHrU8uNFQ==",
|
|
1424
|
+
"license": "MIT"
|
|
1425
|
+
},
|
|
1426
|
+
"node_modules/eventsource": {
|
|
1427
|
+
"version": "3.0.7",
|
|
1428
|
+
"resolved": "https://registry.npmjs.org/eventsource/-/eventsource-3.0.7.tgz",
|
|
1429
|
+
"integrity": "sha512-CRT1WTyuQoD771GW56XEZFQ/ZoSfWid1alKGDYMmkt2yl8UXrVR4pspqWNEcqKvVIzg6PAltWjxcSSPrboA4iA==",
|
|
1430
|
+
"license": "MIT",
|
|
1431
|
+
"dependencies": {
|
|
1432
|
+
"eventsource-parser": "^3.0.1"
|
|
1433
|
+
},
|
|
1434
|
+
"engines": {
|
|
1435
|
+
"node": ">=18.0.0"
|
|
1436
|
+
}
|
|
1437
|
+
},
|
|
1438
|
+
"node_modules/eventsource-parser": {
|
|
1439
|
+
"version": "3.1.0",
|
|
1440
|
+
"resolved": "https://registry.npmjs.org/eventsource-parser/-/eventsource-parser-3.1.0.tgz",
|
|
1441
|
+
"integrity": "sha512-kJezFj9YFAMLeORyi7aCLxLbD5/qWMQnoMVlVPyHIll7lgRJCc3JVln9Vgl9nwQi0YkMnhdGTMNn7CkRRAptMg==",
|
|
1442
|
+
"license": "MIT",
|
|
1443
|
+
"engines": {
|
|
1444
|
+
"node": ">=18.0.0"
|
|
1445
|
+
}
|
|
1446
|
+
},
|
|
1447
|
+
"node_modules/express": {
|
|
1448
|
+
"version": "5.2.1",
|
|
1449
|
+
"resolved": "https://registry.npmjs.org/express/-/express-5.2.1.tgz",
|
|
1450
|
+
"integrity": "sha512-hIS4idWWai69NezIdRt2xFVofaF4j+6INOpJlVOLDO8zXGpUVEVzIYk12UUi2JzjEzWL3IOAxcTubgz9Po0yXw==",
|
|
1451
|
+
"license": "MIT",
|
|
1452
|
+
"dependencies": {
|
|
1453
|
+
"accepts": "^2.0.0",
|
|
1454
|
+
"body-parser": "^2.2.1",
|
|
1455
|
+
"content-disposition": "^1.0.0",
|
|
1456
|
+
"content-type": "^1.0.5",
|
|
1457
|
+
"cookie": "^0.7.1",
|
|
1458
|
+
"cookie-signature": "^1.2.1",
|
|
1459
|
+
"debug": "^4.4.0",
|
|
1460
|
+
"depd": "^2.0.0",
|
|
1461
|
+
"encodeurl": "^2.0.0",
|
|
1462
|
+
"escape-html": "^1.0.3",
|
|
1463
|
+
"etag": "^1.8.1",
|
|
1464
|
+
"finalhandler": "^2.1.0",
|
|
1465
|
+
"fresh": "^2.0.0",
|
|
1466
|
+
"http-errors": "^2.0.0",
|
|
1467
|
+
"merge-descriptors": "^2.0.0",
|
|
1468
|
+
"mime-types": "^3.0.0",
|
|
1469
|
+
"on-finished": "^2.4.1",
|
|
1470
|
+
"once": "^1.4.0",
|
|
1471
|
+
"parseurl": "^1.3.3",
|
|
1472
|
+
"proxy-addr": "^2.0.7",
|
|
1473
|
+
"qs": "^6.14.0",
|
|
1474
|
+
"range-parser": "^1.2.1",
|
|
1475
|
+
"router": "^2.2.0",
|
|
1476
|
+
"send": "^1.1.0",
|
|
1477
|
+
"serve-static": "^2.2.0",
|
|
1478
|
+
"statuses": "^2.0.1",
|
|
1479
|
+
"type-is": "^2.0.1",
|
|
1480
|
+
"vary": "^1.1.2"
|
|
1481
|
+
},
|
|
1482
|
+
"engines": {
|
|
1483
|
+
"node": ">= 18"
|
|
1484
|
+
},
|
|
1485
|
+
"funding": {
|
|
1486
|
+
"type": "opencollective",
|
|
1487
|
+
"url": "https://opencollective.com/express"
|
|
1488
|
+
}
|
|
1489
|
+
},
|
|
1490
|
+
"node_modules/express-rate-limit": {
|
|
1491
|
+
"version": "8.5.2",
|
|
1492
|
+
"resolved": "https://registry.npmjs.org/express-rate-limit/-/express-rate-limit-8.5.2.tgz",
|
|
1493
|
+
"integrity": "sha512-5Kb34ipNX694DH48vN9irak1Qx30nb0PLYHXfJgw4YEjiC3ZEmZJhwOp+VfiCYwFzvFTdB9QkArYS5kXa2cx2A==",
|
|
1494
|
+
"license": "MIT",
|
|
1495
|
+
"dependencies": {
|
|
1496
|
+
"ip-address": "^10.2.0"
|
|
1497
|
+
},
|
|
1498
|
+
"engines": {
|
|
1499
|
+
"node": ">= 16"
|
|
1500
|
+
},
|
|
1501
|
+
"funding": {
|
|
1502
|
+
"url": "https://github.com/sponsors/express-rate-limit"
|
|
1503
|
+
},
|
|
1504
|
+
"peerDependencies": {
|
|
1505
|
+
"express": ">= 4.11"
|
|
1506
|
+
}
|
|
1507
|
+
},
|
|
1508
|
+
"node_modules/fast-deep-equal": {
|
|
1509
|
+
"version": "3.1.3",
|
|
1510
|
+
"resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz",
|
|
1511
|
+
"integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==",
|
|
1512
|
+
"license": "MIT"
|
|
1513
|
+
},
|
|
1514
|
+
"node_modules/fast-uri": {
|
|
1515
|
+
"version": "3.1.3",
|
|
1516
|
+
"resolved": "https://registry.npmjs.org/fast-uri/-/fast-uri-3.1.3.tgz",
|
|
1517
|
+
"integrity": "sha512-i70LwGWUduXqzicKXWshooq+sWL1K3WUU5rKZNG/0i3a1OSoX3HqhH5WbWwTmqWfor4urUakGPiRQcleRZTwOg==",
|
|
1518
|
+
"funding": [
|
|
1519
|
+
{
|
|
1520
|
+
"type": "github",
|
|
1521
|
+
"url": "https://github.com/sponsors/fastify"
|
|
1522
|
+
},
|
|
1523
|
+
{
|
|
1524
|
+
"type": "opencollective",
|
|
1525
|
+
"url": "https://opencollective.com/fastify"
|
|
1526
|
+
}
|
|
1527
|
+
],
|
|
1528
|
+
"license": "BSD-3-Clause"
|
|
1529
|
+
},
|
|
1530
|
+
"node_modules/fdir": {
|
|
1531
|
+
"version": "6.5.0",
|
|
1532
|
+
"resolved": "https://registry.npmjs.org/fdir/-/fdir-6.5.0.tgz",
|
|
1533
|
+
"integrity": "sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==",
|
|
1534
|
+
"license": "MIT",
|
|
1535
|
+
"engines": {
|
|
1536
|
+
"node": ">=12.0.0"
|
|
1537
|
+
},
|
|
1538
|
+
"peerDependencies": {
|
|
1539
|
+
"picomatch": "^3 || ^4"
|
|
1540
|
+
},
|
|
1541
|
+
"peerDependenciesMeta": {
|
|
1542
|
+
"picomatch": {
|
|
1543
|
+
"optional": true
|
|
1544
|
+
}
|
|
1545
|
+
}
|
|
1546
|
+
},
|
|
1547
|
+
"node_modules/finalhandler": {
|
|
1548
|
+
"version": "2.1.1",
|
|
1549
|
+
"resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-2.1.1.tgz",
|
|
1550
|
+
"integrity": "sha512-S8KoZgRZN+a5rNwqTxlZZePjT/4cnm0ROV70LedRHZ0p8u9fRID0hJUZQpkKLzro8LfmC8sx23bY6tVNxv8pQA==",
|
|
1551
|
+
"license": "MIT",
|
|
1552
|
+
"dependencies": {
|
|
1553
|
+
"debug": "^4.4.0",
|
|
1554
|
+
"encodeurl": "^2.0.0",
|
|
1555
|
+
"escape-html": "^1.0.3",
|
|
1556
|
+
"on-finished": "^2.4.1",
|
|
1557
|
+
"parseurl": "^1.3.3",
|
|
1558
|
+
"statuses": "^2.0.1"
|
|
1559
|
+
},
|
|
1560
|
+
"engines": {
|
|
1561
|
+
"node": ">= 18.0.0"
|
|
1562
|
+
},
|
|
1563
|
+
"funding": {
|
|
1564
|
+
"type": "opencollective",
|
|
1565
|
+
"url": "https://opencollective.com/express"
|
|
1566
|
+
}
|
|
1567
|
+
},
|
|
1568
|
+
"node_modules/forwarded": {
|
|
1569
|
+
"version": "0.2.0",
|
|
1570
|
+
"resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz",
|
|
1571
|
+
"integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==",
|
|
1572
|
+
"license": "MIT",
|
|
1573
|
+
"engines": {
|
|
1574
|
+
"node": ">= 0.6"
|
|
1575
|
+
}
|
|
1576
|
+
},
|
|
1577
|
+
"node_modules/fresh": {
|
|
1578
|
+
"version": "2.0.0",
|
|
1579
|
+
"resolved": "https://registry.npmjs.org/fresh/-/fresh-2.0.0.tgz",
|
|
1580
|
+
"integrity": "sha512-Rx/WycZ60HOaqLKAi6cHRKKI7zxWbJ31MhntmtwMoaTeF7XFH9hhBp8vITaMidfljRQ6eYWCKkaTK+ykVJHP2A==",
|
|
1581
|
+
"license": "MIT",
|
|
1582
|
+
"engines": {
|
|
1583
|
+
"node": ">= 0.8"
|
|
1584
|
+
}
|
|
1585
|
+
},
|
|
1586
|
+
"node_modules/function-bind": {
|
|
1587
|
+
"version": "1.1.2",
|
|
1588
|
+
"resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz",
|
|
1589
|
+
"integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==",
|
|
1590
|
+
"license": "MIT",
|
|
1591
|
+
"funding": {
|
|
1592
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
1593
|
+
}
|
|
1594
|
+
},
|
|
1595
|
+
"node_modules/get-caller-file": {
|
|
1596
|
+
"version": "2.0.5",
|
|
1597
|
+
"resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz",
|
|
1598
|
+
"integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==",
|
|
1599
|
+
"license": "ISC",
|
|
1600
|
+
"engines": {
|
|
1601
|
+
"node": "6.* || 8.* || >= 10.*"
|
|
1602
|
+
}
|
|
1603
|
+
},
|
|
1604
|
+
"node_modules/get-east-asian-width": {
|
|
1605
|
+
"version": "1.6.0",
|
|
1606
|
+
"resolved": "https://registry.npmjs.org/get-east-asian-width/-/get-east-asian-width-1.6.0.tgz",
|
|
1607
|
+
"integrity": "sha512-QRbvDIbx6YklUe6RxeTeleMR0yv3cYH6PsPZHcnVn7xv7zO1BHN8r0XETu8n6Ye3Q+ahtSarc3WgtNWmehIBfA==",
|
|
1608
|
+
"license": "MIT",
|
|
1609
|
+
"engines": {
|
|
1610
|
+
"node": ">=18"
|
|
1611
|
+
},
|
|
1612
|
+
"funding": {
|
|
1613
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
1614
|
+
}
|
|
1615
|
+
},
|
|
1616
|
+
"node_modules/get-intrinsic": {
|
|
1617
|
+
"version": "1.3.0",
|
|
1618
|
+
"resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.3.0.tgz",
|
|
1619
|
+
"integrity": "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==",
|
|
1620
|
+
"license": "MIT",
|
|
1621
|
+
"dependencies": {
|
|
1622
|
+
"call-bind-apply-helpers": "^1.0.2",
|
|
1623
|
+
"es-define-property": "^1.0.1",
|
|
1624
|
+
"es-errors": "^1.3.0",
|
|
1625
|
+
"es-object-atoms": "^1.1.1",
|
|
1626
|
+
"function-bind": "^1.1.2",
|
|
1627
|
+
"get-proto": "^1.0.1",
|
|
1628
|
+
"gopd": "^1.2.0",
|
|
1629
|
+
"has-symbols": "^1.1.0",
|
|
1630
|
+
"hasown": "^2.0.2",
|
|
1631
|
+
"math-intrinsics": "^1.1.0"
|
|
1632
|
+
},
|
|
1633
|
+
"engines": {
|
|
1634
|
+
"node": ">= 0.4"
|
|
1635
|
+
},
|
|
1636
|
+
"funding": {
|
|
1637
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
1638
|
+
}
|
|
1639
|
+
},
|
|
1640
|
+
"node_modules/get-proto": {
|
|
1641
|
+
"version": "1.0.1",
|
|
1642
|
+
"resolved": "https://registry.npmjs.org/get-proto/-/get-proto-1.0.1.tgz",
|
|
1643
|
+
"integrity": "sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==",
|
|
1644
|
+
"license": "MIT",
|
|
1645
|
+
"dependencies": {
|
|
1646
|
+
"dunder-proto": "^1.0.1",
|
|
1647
|
+
"es-object-atoms": "^1.0.0"
|
|
1648
|
+
},
|
|
1649
|
+
"engines": {
|
|
1650
|
+
"node": ">= 0.4"
|
|
1651
|
+
}
|
|
1652
|
+
},
|
|
1653
|
+
"node_modules/gopd": {
|
|
1654
|
+
"version": "1.2.0",
|
|
1655
|
+
"resolved": "https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz",
|
|
1656
|
+
"integrity": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==",
|
|
1657
|
+
"license": "MIT",
|
|
1658
|
+
"engines": {
|
|
1659
|
+
"node": ">= 0.4"
|
|
1660
|
+
},
|
|
1661
|
+
"funding": {
|
|
1662
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
1663
|
+
}
|
|
1664
|
+
},
|
|
1665
|
+
"node_modules/has-symbols": {
|
|
1666
|
+
"version": "1.1.0",
|
|
1667
|
+
"resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.1.0.tgz",
|
|
1668
|
+
"integrity": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==",
|
|
1669
|
+
"license": "MIT",
|
|
1670
|
+
"engines": {
|
|
1671
|
+
"node": ">= 0.4"
|
|
1672
|
+
},
|
|
1673
|
+
"funding": {
|
|
1674
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
1675
|
+
}
|
|
1676
|
+
},
|
|
1677
|
+
"node_modules/hasown": {
|
|
1678
|
+
"version": "2.0.4",
|
|
1679
|
+
"resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.4.tgz",
|
|
1680
|
+
"integrity": "sha512-T2UbfbBEF32wiepXIsMlTW9+dDYC6wMh/t/vYA4tuOMKqWz/n3vr1NFSxQiyP+zk2mXsoMA/i/7qV6LKut1t1A==",
|
|
1681
|
+
"license": "MIT",
|
|
1682
|
+
"dependencies": {
|
|
1683
|
+
"function-bind": "^1.1.2"
|
|
1684
|
+
},
|
|
1685
|
+
"engines": {
|
|
1686
|
+
"node": ">= 0.4"
|
|
1687
|
+
}
|
|
1688
|
+
},
|
|
1689
|
+
"node_modules/hono": {
|
|
1690
|
+
"version": "4.12.29",
|
|
1691
|
+
"resolved": "https://registry.npmjs.org/hono/-/hono-4.12.29.tgz",
|
|
1692
|
+
"integrity": "sha512-1hNiRjawYrLq/4m3DQQjPGFg0VZkk4RjQJDff/excI6Dm9BiL75qxGrd7/c6YOxPdq6AscP3LiXhQ6fKFC1Waw==",
|
|
1693
|
+
"license": "MIT",
|
|
1694
|
+
"engines": {
|
|
1695
|
+
"node": ">=16.9.0"
|
|
1696
|
+
}
|
|
1697
|
+
},
|
|
1698
|
+
"node_modules/http-errors": {
|
|
1699
|
+
"version": "2.0.1",
|
|
1700
|
+
"resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.1.tgz",
|
|
1701
|
+
"integrity": "sha512-4FbRdAX+bSdmo4AUFuS0WNiPz8NgFt+r8ThgNWmlrjQjt1Q7ZR9+zTlce2859x4KSXrwIsaeTqDoKQmtP8pLmQ==",
|
|
1702
|
+
"license": "MIT",
|
|
1703
|
+
"dependencies": {
|
|
1704
|
+
"depd": "~2.0.0",
|
|
1705
|
+
"inherits": "~2.0.4",
|
|
1706
|
+
"setprototypeof": "~1.2.0",
|
|
1707
|
+
"statuses": "~2.0.2",
|
|
1708
|
+
"toidentifier": "~1.0.1"
|
|
1709
|
+
},
|
|
1710
|
+
"engines": {
|
|
1711
|
+
"node": ">= 0.8"
|
|
1712
|
+
},
|
|
1713
|
+
"funding": {
|
|
1714
|
+
"type": "opencollective",
|
|
1715
|
+
"url": "https://opencollective.com/express"
|
|
1716
|
+
}
|
|
1717
|
+
},
|
|
1718
|
+
"node_modules/iconv-lite": {
|
|
1719
|
+
"version": "0.7.3",
|
|
1720
|
+
"resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.7.3.tgz",
|
|
1721
|
+
"integrity": "sha512-IKXpvIzjnC9XTAUbVBcMfGS0EPaIXtW6v+zr+RRp+hqULEpo0owZax6wyRwPOJbWbzjYspQwusTsfVr0ifh4uQ==",
|
|
1722
|
+
"license": "MIT",
|
|
1723
|
+
"dependencies": {
|
|
1724
|
+
"safer-buffer": ">= 2.1.2 < 3.0.0"
|
|
1725
|
+
},
|
|
1726
|
+
"engines": {
|
|
1727
|
+
"node": ">=0.10.0"
|
|
1728
|
+
},
|
|
1729
|
+
"funding": {
|
|
1730
|
+
"type": "opencollective",
|
|
1731
|
+
"url": "https://opencollective.com/express"
|
|
1732
|
+
}
|
|
1733
|
+
},
|
|
1734
|
+
"node_modules/inherits": {
|
|
1735
|
+
"version": "2.0.4",
|
|
1736
|
+
"resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz",
|
|
1737
|
+
"integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==",
|
|
1738
|
+
"license": "ISC"
|
|
1739
|
+
},
|
|
1740
|
+
"node_modules/ip-address": {
|
|
1741
|
+
"version": "10.2.0",
|
|
1742
|
+
"resolved": "https://registry.npmjs.org/ip-address/-/ip-address-10.2.0.tgz",
|
|
1743
|
+
"integrity": "sha512-/+S6j4E9AHvW9SWMSEY9Xfy66O5PWvVEJ08O0y5JGyEKQpojb0K0GKpz/v5HJ/G0vi3D2sjGK78119oXZeE0qA==",
|
|
1744
|
+
"license": "MIT",
|
|
1745
|
+
"engines": {
|
|
1746
|
+
"node": ">= 12"
|
|
1747
|
+
}
|
|
1748
|
+
},
|
|
1749
|
+
"node_modules/ipaddr.js": {
|
|
1750
|
+
"version": "1.9.1",
|
|
1751
|
+
"resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz",
|
|
1752
|
+
"integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==",
|
|
1753
|
+
"license": "MIT",
|
|
1754
|
+
"engines": {
|
|
1755
|
+
"node": ">= 0.10"
|
|
1756
|
+
}
|
|
1757
|
+
},
|
|
1758
|
+
"node_modules/is-extglob": {
|
|
1759
|
+
"version": "2.1.1",
|
|
1760
|
+
"resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz",
|
|
1761
|
+
"integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==",
|
|
1762
|
+
"license": "MIT",
|
|
1763
|
+
"engines": {
|
|
1764
|
+
"node": ">=0.10.0"
|
|
1765
|
+
}
|
|
1766
|
+
},
|
|
1767
|
+
"node_modules/is-glob": {
|
|
1768
|
+
"version": "4.0.3",
|
|
1769
|
+
"resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz",
|
|
1770
|
+
"integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==",
|
|
1771
|
+
"license": "MIT",
|
|
1772
|
+
"dependencies": {
|
|
1773
|
+
"is-extglob": "^2.1.1"
|
|
1774
|
+
},
|
|
1775
|
+
"engines": {
|
|
1776
|
+
"node": ">=0.10.0"
|
|
1777
|
+
}
|
|
1778
|
+
},
|
|
1779
|
+
"node_modules/is-promise": {
|
|
1780
|
+
"version": "4.0.0",
|
|
1781
|
+
"resolved": "https://registry.npmjs.org/is-promise/-/is-promise-4.0.0.tgz",
|
|
1782
|
+
"integrity": "sha512-hvpoI6korhJMnej285dSg6nu1+e6uxs7zG3BYAm5byqDsgJNWwxzM6z6iZiAgQR4TJ30JmBTOwqZUw3WlyH3AQ==",
|
|
1783
|
+
"license": "MIT"
|
|
1784
|
+
},
|
|
1785
|
+
"node_modules/isexe": {
|
|
1786
|
+
"version": "2.0.0",
|
|
1787
|
+
"resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz",
|
|
1788
|
+
"integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==",
|
|
1789
|
+
"license": "ISC"
|
|
1790
|
+
},
|
|
1791
|
+
"node_modules/jose": {
|
|
1792
|
+
"version": "6.2.3",
|
|
1793
|
+
"resolved": "https://registry.npmjs.org/jose/-/jose-6.2.3.tgz",
|
|
1794
|
+
"integrity": "sha512-YYVDInQKFJfR/xa3ojUTl8c2KoTwiL1R5Wg9YCydwH0x0B9grbzlg5HC7mMjCtUJjbQ/YnGEZIhI5tCgfTb4Hw==",
|
|
1795
|
+
"license": "MIT",
|
|
1796
|
+
"funding": {
|
|
1797
|
+
"url": "https://github.com/sponsors/panva"
|
|
1798
|
+
}
|
|
1799
|
+
},
|
|
1800
|
+
"node_modules/js-base64": {
|
|
1801
|
+
"version": "3.8.1",
|
|
1802
|
+
"resolved": "https://registry.npmjs.org/js-base64/-/js-base64-3.8.1.tgz",
|
|
1803
|
+
"integrity": "sha512-5xVjhUZlHHeuO2W7w2rDFj/Kl1xLX+HjZxdOQwCsUOifl6UaoH1o1wsbsTMz+r0aeC7gCijvru02j6TfKZWzKg==",
|
|
1804
|
+
"license": "BSD-3-Clause"
|
|
1805
|
+
},
|
|
1806
|
+
"node_modules/js-tokens": {
|
|
1807
|
+
"version": "4.0.0",
|
|
1808
|
+
"resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz",
|
|
1809
|
+
"integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==",
|
|
1810
|
+
"license": "MIT"
|
|
1811
|
+
},
|
|
1812
|
+
"node_modules/js-yaml": {
|
|
1813
|
+
"version": "4.3.0",
|
|
1814
|
+
"resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.3.0.tgz",
|
|
1815
|
+
"integrity": "sha512-1td788aAnnZ5qs7V2QIRl1owjtYpbKt749Y3xauqQgwIIGF/xXWz1wMTEBx5O3LK3lXLVuqXPdPxj2BoFHaW9Q==",
|
|
1816
|
+
"funding": [
|
|
1817
|
+
{
|
|
1818
|
+
"type": "github",
|
|
1819
|
+
"url": "https://github.com/sponsors/puzrin"
|
|
1820
|
+
},
|
|
1821
|
+
{
|
|
1822
|
+
"type": "github",
|
|
1823
|
+
"url": "https://github.com/sponsors/nodeca"
|
|
1824
|
+
}
|
|
1825
|
+
],
|
|
1826
|
+
"license": "MIT",
|
|
1827
|
+
"dependencies": {
|
|
1828
|
+
"argparse": "^2.0.1"
|
|
1829
|
+
},
|
|
1830
|
+
"bin": {
|
|
1831
|
+
"js-yaml": "bin/js-yaml.js"
|
|
1832
|
+
}
|
|
1833
|
+
},
|
|
1834
|
+
"node_modules/jsesc": {
|
|
1835
|
+
"version": "3.1.0",
|
|
1836
|
+
"resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.1.0.tgz",
|
|
1837
|
+
"integrity": "sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==",
|
|
1838
|
+
"license": "MIT",
|
|
1839
|
+
"bin": {
|
|
1840
|
+
"jsesc": "bin/jsesc"
|
|
1841
|
+
},
|
|
1842
|
+
"engines": {
|
|
1843
|
+
"node": ">=6"
|
|
1844
|
+
}
|
|
1845
|
+
},
|
|
1846
|
+
"node_modules/json-schema": {
|
|
1847
|
+
"version": "0.4.0",
|
|
1848
|
+
"resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.4.0.tgz",
|
|
1849
|
+
"integrity": "sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==",
|
|
1850
|
+
"license": "(AFL-2.1 OR BSD-3-Clause)"
|
|
1851
|
+
},
|
|
1852
|
+
"node_modules/json-schema-to-typescript": {
|
|
1853
|
+
"version": "15.0.4",
|
|
1854
|
+
"resolved": "https://registry.npmjs.org/json-schema-to-typescript/-/json-schema-to-typescript-15.0.4.tgz",
|
|
1855
|
+
"integrity": "sha512-Su9oK8DR4xCmDsLlyvadkXzX6+GGXJpbhwoLtOGArAG61dvbW4YQmSEno2y66ahpIdmLMg6YUf/QHLgiwvkrHQ==",
|
|
1856
|
+
"license": "MIT",
|
|
1857
|
+
"dependencies": {
|
|
1858
|
+
"@apidevtools/json-schema-ref-parser": "^11.5.5",
|
|
1859
|
+
"@types/json-schema": "^7.0.15",
|
|
1860
|
+
"@types/lodash": "^4.17.7",
|
|
1861
|
+
"is-glob": "^4.0.3",
|
|
1862
|
+
"js-yaml": "^4.1.0",
|
|
1863
|
+
"lodash": "^4.17.21",
|
|
1864
|
+
"minimist": "^1.2.8",
|
|
1865
|
+
"prettier": "^3.2.5",
|
|
1866
|
+
"tinyglobby": "^0.2.9"
|
|
1867
|
+
},
|
|
1868
|
+
"bin": {
|
|
1869
|
+
"json2ts": "dist/src/cli.js"
|
|
1870
|
+
},
|
|
1871
|
+
"engines": {
|
|
1872
|
+
"node": ">=16.0.0"
|
|
1873
|
+
}
|
|
1874
|
+
},
|
|
1875
|
+
"node_modules/json-schema-traverse": {
|
|
1876
|
+
"version": "1.0.0",
|
|
1877
|
+
"resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz",
|
|
1878
|
+
"integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==",
|
|
1879
|
+
"license": "MIT"
|
|
1880
|
+
},
|
|
1881
|
+
"node_modules/json-schema-typed": {
|
|
1882
|
+
"version": "8.0.2",
|
|
1883
|
+
"resolved": "https://registry.npmjs.org/json-schema-typed/-/json-schema-typed-8.0.2.tgz",
|
|
1884
|
+
"integrity": "sha512-fQhoXdcvc3V28x7C7BMs4P5+kNlgUURe2jmUT1T//oBRMDrqy1QPelJimwZGo7Hg9VPV3EQV5Bnq4hbFy2vetA==",
|
|
1885
|
+
"license": "BSD-2-Clause"
|
|
1886
|
+
},
|
|
1887
|
+
"node_modules/lodash": {
|
|
1888
|
+
"version": "4.18.1",
|
|
1889
|
+
"resolved": "https://registry.npmjs.org/lodash/-/lodash-4.18.1.tgz",
|
|
1890
|
+
"integrity": "sha512-dMInicTPVE8d1e5otfwmmjlxkZoUpiVLwyeTdUsi/Caj/gfzzblBcCE5sRHV/AsjuCmxWrte2TNGSYuCeCq+0Q==",
|
|
1891
|
+
"license": "MIT"
|
|
1892
|
+
},
|
|
1893
|
+
"node_modules/math-intrinsics": {
|
|
1894
|
+
"version": "1.1.0",
|
|
1895
|
+
"resolved": "https://registry.npmjs.org/math-intrinsics/-/math-intrinsics-1.1.0.tgz",
|
|
1896
|
+
"integrity": "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==",
|
|
1897
|
+
"license": "MIT",
|
|
1898
|
+
"engines": {
|
|
1899
|
+
"node": ">= 0.4"
|
|
1900
|
+
}
|
|
1901
|
+
},
|
|
1902
|
+
"node_modules/media-typer": {
|
|
1903
|
+
"version": "1.1.0",
|
|
1904
|
+
"resolved": "https://registry.npmjs.org/media-typer/-/media-typer-1.1.0.tgz",
|
|
1905
|
+
"integrity": "sha512-aisnrDP4GNe06UcKFnV5bfMNPBUw4jsLGaWwWfnH3v02GnBuXX2MCVn5RbrWo0j3pczUilYblq7fQ7Nw2t5XKw==",
|
|
1906
|
+
"license": "MIT",
|
|
1907
|
+
"engines": {
|
|
1908
|
+
"node": ">= 0.8"
|
|
1909
|
+
}
|
|
1910
|
+
},
|
|
1911
|
+
"node_modules/merge-descriptors": {
|
|
1912
|
+
"version": "2.0.0",
|
|
1913
|
+
"resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-2.0.0.tgz",
|
|
1914
|
+
"integrity": "sha512-Snk314V5ayFLhp3fkUREub6WtjBfPdCPY1Ln8/8munuLuiYhsABgBVWsozAG+MWMbVEvcdcpbi9R7ww22l9Q3g==",
|
|
1915
|
+
"license": "MIT",
|
|
1916
|
+
"engines": {
|
|
1917
|
+
"node": ">=18"
|
|
1918
|
+
},
|
|
1919
|
+
"funding": {
|
|
1920
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
1921
|
+
}
|
|
1922
|
+
},
|
|
1923
|
+
"node_modules/mime-db": {
|
|
1924
|
+
"version": "1.54.0",
|
|
1925
|
+
"resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.54.0.tgz",
|
|
1926
|
+
"integrity": "sha512-aU5EJuIN2WDemCcAp2vFBfp/m4EAhWJnUNSSw0ixs7/kXbd6Pg64EmwJkNdFhB8aWt1sH2CTXrLxo/iAGV3oPQ==",
|
|
1927
|
+
"license": "MIT",
|
|
1928
|
+
"engines": {
|
|
1929
|
+
"node": ">= 0.6"
|
|
1930
|
+
}
|
|
1931
|
+
},
|
|
1932
|
+
"node_modules/mime-types": {
|
|
1933
|
+
"version": "3.0.2",
|
|
1934
|
+
"resolved": "https://registry.npmjs.org/mime-types/-/mime-types-3.0.2.tgz",
|
|
1935
|
+
"integrity": "sha512-Lbgzdk0h4juoQ9fCKXW4by0UJqj+nOOrI9MJ1sSj4nI8aI2eo1qmvQEie4VD1glsS250n15LsWsYtCugiStS5A==",
|
|
1936
|
+
"license": "MIT",
|
|
1937
|
+
"dependencies": {
|
|
1938
|
+
"mime-db": "^1.54.0"
|
|
1939
|
+
},
|
|
1940
|
+
"engines": {
|
|
1941
|
+
"node": ">=18"
|
|
1942
|
+
},
|
|
1943
|
+
"funding": {
|
|
1944
|
+
"type": "opencollective",
|
|
1945
|
+
"url": "https://opencollective.com/express"
|
|
1946
|
+
}
|
|
1947
|
+
},
|
|
1948
|
+
"node_modules/mimetext": {
|
|
1949
|
+
"version": "3.0.28",
|
|
1950
|
+
"resolved": "https://registry.npmjs.org/mimetext/-/mimetext-3.0.28.tgz",
|
|
1951
|
+
"integrity": "sha512-eQXpbNrtxLCjUtiVbR/qR09dbPgZ2o+KR1uA7QKqGhbn8QV7HIL16mXXsobBL4/8TqoYh1us31kfz+dNfCev9g==",
|
|
1952
|
+
"license": "MIT",
|
|
1953
|
+
"dependencies": {
|
|
1954
|
+
"@babel/runtime": "^7.26.0",
|
|
1955
|
+
"@babel/runtime-corejs3": "^7.26.0",
|
|
1956
|
+
"js-base64": "^3.7.7",
|
|
1957
|
+
"mime-types": "^2.1.35"
|
|
1958
|
+
},
|
|
1959
|
+
"funding": {
|
|
1960
|
+
"type": "patreon",
|
|
1961
|
+
"url": "https://patreon.com/muratgozel"
|
|
1962
|
+
}
|
|
1963
|
+
},
|
|
1964
|
+
"node_modules/mimetext/node_modules/mime-db": {
|
|
1965
|
+
"version": "1.52.0",
|
|
1966
|
+
"resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz",
|
|
1967
|
+
"integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==",
|
|
1968
|
+
"license": "MIT",
|
|
1969
|
+
"engines": {
|
|
1970
|
+
"node": ">= 0.6"
|
|
1971
|
+
}
|
|
1972
|
+
},
|
|
1973
|
+
"node_modules/mimetext/node_modules/mime-types": {
|
|
1974
|
+
"version": "2.1.35",
|
|
1975
|
+
"resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz",
|
|
1976
|
+
"integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==",
|
|
1977
|
+
"license": "MIT",
|
|
1978
|
+
"dependencies": {
|
|
1979
|
+
"mime-db": "1.52.0"
|
|
1980
|
+
},
|
|
1981
|
+
"engines": {
|
|
1982
|
+
"node": ">= 0.6"
|
|
1983
|
+
}
|
|
1984
|
+
},
|
|
1985
|
+
"node_modules/minimist": {
|
|
1986
|
+
"version": "1.2.8",
|
|
1987
|
+
"resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz",
|
|
1988
|
+
"integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==",
|
|
1989
|
+
"license": "MIT",
|
|
1990
|
+
"funding": {
|
|
1991
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
1992
|
+
}
|
|
1993
|
+
},
|
|
1994
|
+
"node_modules/ms": {
|
|
1995
|
+
"version": "2.1.3",
|
|
1996
|
+
"resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
|
|
1997
|
+
"integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==",
|
|
1998
|
+
"license": "MIT"
|
|
1999
|
+
},
|
|
2000
|
+
"node_modules/nanoid": {
|
|
2001
|
+
"version": "5.1.16",
|
|
2002
|
+
"resolved": "https://registry.npmjs.org/nanoid/-/nanoid-5.1.16.tgz",
|
|
2003
|
+
"integrity": "sha512-kVrnsrJqMR8+oLJnGEmSWw9BivK5mt7H3FZatVRjrc5wGqFYuBxX1yG7+A7Gi5AefkX6t/oCkizcQgpu0cY1dQ==",
|
|
2004
|
+
"funding": [
|
|
2005
|
+
{
|
|
2006
|
+
"type": "github",
|
|
2007
|
+
"url": "https://github.com/sponsors/ai"
|
|
2008
|
+
}
|
|
2009
|
+
],
|
|
2010
|
+
"license": "MIT",
|
|
2011
|
+
"bin": {
|
|
2012
|
+
"nanoid": "bin/nanoid.js"
|
|
2013
|
+
},
|
|
2014
|
+
"engines": {
|
|
2015
|
+
"node": "^18 || >=20"
|
|
2016
|
+
}
|
|
2017
|
+
},
|
|
2018
|
+
"node_modules/negotiator": {
|
|
2019
|
+
"version": "1.0.0",
|
|
2020
|
+
"resolved": "https://registry.npmjs.org/negotiator/-/negotiator-1.0.0.tgz",
|
|
2021
|
+
"integrity": "sha512-8Ofs/AUQh8MaEcrlq5xOX0CQ9ypTF5dl78mjlMNfOK08fzpgTHQRQPBxcPlEtIw0yRpws+Zo/3r+5WRby7u3Gg==",
|
|
2022
|
+
"license": "MIT",
|
|
2023
|
+
"engines": {
|
|
2024
|
+
"node": ">= 0.6"
|
|
2025
|
+
}
|
|
2026
|
+
},
|
|
2027
|
+
"node_modules/object-assign": {
|
|
2028
|
+
"version": "4.1.1",
|
|
2029
|
+
"resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz",
|
|
2030
|
+
"integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==",
|
|
2031
|
+
"license": "MIT",
|
|
2032
|
+
"engines": {
|
|
2033
|
+
"node": ">=0.10.0"
|
|
2034
|
+
}
|
|
2035
|
+
},
|
|
2036
|
+
"node_modules/object-inspect": {
|
|
2037
|
+
"version": "1.13.4",
|
|
2038
|
+
"resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.4.tgz",
|
|
2039
|
+
"integrity": "sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew==",
|
|
2040
|
+
"license": "MIT",
|
|
2041
|
+
"engines": {
|
|
2042
|
+
"node": ">= 0.4"
|
|
2043
|
+
},
|
|
2044
|
+
"funding": {
|
|
2045
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
2046
|
+
}
|
|
2047
|
+
},
|
|
2048
|
+
"node_modules/on-finished": {
|
|
2049
|
+
"version": "2.4.1",
|
|
2050
|
+
"resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz",
|
|
2051
|
+
"integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==",
|
|
2052
|
+
"license": "MIT",
|
|
2053
|
+
"dependencies": {
|
|
2054
|
+
"ee-first": "1.1.1"
|
|
2055
|
+
},
|
|
2056
|
+
"engines": {
|
|
2057
|
+
"node": ">= 0.8"
|
|
2058
|
+
}
|
|
2059
|
+
},
|
|
2060
|
+
"node_modules/once": {
|
|
2061
|
+
"version": "1.4.0",
|
|
2062
|
+
"resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz",
|
|
2063
|
+
"integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==",
|
|
2064
|
+
"license": "ISC",
|
|
2065
|
+
"dependencies": {
|
|
2066
|
+
"wrappy": "1"
|
|
2067
|
+
}
|
|
2068
|
+
},
|
|
2069
|
+
"node_modules/parseurl": {
|
|
2070
|
+
"version": "1.3.3",
|
|
2071
|
+
"resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz",
|
|
2072
|
+
"integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==",
|
|
2073
|
+
"license": "MIT",
|
|
2074
|
+
"engines": {
|
|
2075
|
+
"node": ">= 0.8"
|
|
2076
|
+
}
|
|
2077
|
+
},
|
|
2078
|
+
"node_modules/partyserver": {
|
|
2079
|
+
"version": "0.4.1",
|
|
2080
|
+
"resolved": "https://registry.npmjs.org/partyserver/-/partyserver-0.4.1.tgz",
|
|
2081
|
+
"integrity": "sha512-StSs0oY8RmTxjGNil7VbCG4gnTN+4rYX20fiUIItAxTPpr/5rPDZT6PIvMROkk9M1Gn7GzE1wuQXwhxceaGhXA==",
|
|
2082
|
+
"license": "ISC",
|
|
2083
|
+
"dependencies": {
|
|
2084
|
+
"nanoid": "^5.1.6"
|
|
2085
|
+
},
|
|
2086
|
+
"peerDependencies": {
|
|
2087
|
+
"@cloudflare/workers-types": "^4.20240729.0"
|
|
2088
|
+
}
|
|
2089
|
+
},
|
|
2090
|
+
"node_modules/partysocket": {
|
|
2091
|
+
"version": "1.1.16",
|
|
2092
|
+
"resolved": "https://registry.npmjs.org/partysocket/-/partysocket-1.1.16.tgz",
|
|
2093
|
+
"integrity": "sha512-d7xFv+ZC7x0p/DAHWJ5FhxQhimIx+ucyZY+kxL0cKddLBmK9c4p2tEA/L+dOOrWm6EYrRwrBjKQV0uSzOY9x1w==",
|
|
2094
|
+
"license": "MIT",
|
|
2095
|
+
"dependencies": {
|
|
2096
|
+
"event-target-polyfill": "^0.0.4"
|
|
2097
|
+
},
|
|
2098
|
+
"peerDependencies": {
|
|
2099
|
+
"react": ">=17"
|
|
2100
|
+
},
|
|
2101
|
+
"peerDependenciesMeta": {
|
|
2102
|
+
"react": {
|
|
2103
|
+
"optional": true
|
|
2104
|
+
}
|
|
2105
|
+
}
|
|
2106
|
+
},
|
|
2107
|
+
"node_modules/path-key": {
|
|
2108
|
+
"version": "3.1.1",
|
|
2109
|
+
"resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz",
|
|
2110
|
+
"integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==",
|
|
2111
|
+
"license": "MIT",
|
|
2112
|
+
"engines": {
|
|
2113
|
+
"node": ">=8"
|
|
2114
|
+
}
|
|
2115
|
+
},
|
|
2116
|
+
"node_modules/path-to-regexp": {
|
|
2117
|
+
"version": "8.4.2",
|
|
2118
|
+
"resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-8.4.2.tgz",
|
|
2119
|
+
"integrity": "sha512-qRcuIdP69NPm4qbACK+aDogI5CBDMi1jKe0ry5rSQJz8JVLsC7jV8XpiJjGRLLol3N+R5ihGYcrPLTno6pAdBA==",
|
|
2120
|
+
"license": "MIT",
|
|
2121
|
+
"funding": {
|
|
2122
|
+
"type": "opencollective",
|
|
2123
|
+
"url": "https://opencollective.com/express"
|
|
2124
|
+
}
|
|
2125
|
+
},
|
|
2126
|
+
"node_modules/picocolors": {
|
|
2127
|
+
"version": "1.1.1",
|
|
2128
|
+
"resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz",
|
|
2129
|
+
"integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==",
|
|
2130
|
+
"license": "ISC"
|
|
2131
|
+
},
|
|
2132
|
+
"node_modules/picomatch": {
|
|
2133
|
+
"version": "4.0.5",
|
|
2134
|
+
"resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.5.tgz",
|
|
2135
|
+
"integrity": "sha512-RvwwcruNjI1ncT5xRakeyS9Lf8lcItv34KD+aif+VH9kduAyfYBipGh12274xtenIPZ119/R9BdTBa8gAwSh0A==",
|
|
2136
|
+
"license": "MIT",
|
|
2137
|
+
"engines": {
|
|
2138
|
+
"node": ">=12"
|
|
2139
|
+
},
|
|
2140
|
+
"funding": {
|
|
2141
|
+
"url": "https://github.com/sponsors/jonschlinkert"
|
|
2142
|
+
}
|
|
2143
|
+
},
|
|
2144
|
+
"node_modules/pkce-challenge": {
|
|
2145
|
+
"version": "5.0.1",
|
|
2146
|
+
"resolved": "https://registry.npmjs.org/pkce-challenge/-/pkce-challenge-5.0.1.tgz",
|
|
2147
|
+
"integrity": "sha512-wQ0b/W4Fr01qtpHlqSqspcj3EhBvimsdh0KlHhH8HRZnMsEa0ea2fTULOXOS9ccQr3om+GcGRk4e+isrZWV8qQ==",
|
|
2148
|
+
"license": "MIT",
|
|
2149
|
+
"engines": {
|
|
2150
|
+
"node": ">=16.20.0"
|
|
2151
|
+
}
|
|
2152
|
+
},
|
|
2153
|
+
"node_modules/prettier": {
|
|
2154
|
+
"version": "3.9.5",
|
|
2155
|
+
"resolved": "https://registry.npmjs.org/prettier/-/prettier-3.9.5.tgz",
|
|
2156
|
+
"integrity": "sha512-/FVl766LpUfB5vXgCYOYa0MeV/441Ia99AeICQIQFTY/Nw0roZwULcXpku5i1/m5kt/baz+s4Zogspd839HSMg==",
|
|
2157
|
+
"license": "MIT",
|
|
2158
|
+
"bin": {
|
|
2159
|
+
"prettier": "bin/prettier.cjs"
|
|
2160
|
+
},
|
|
2161
|
+
"engines": {
|
|
2162
|
+
"node": ">=14"
|
|
2163
|
+
},
|
|
2164
|
+
"funding": {
|
|
2165
|
+
"url": "https://github.com/prettier/prettier?sponsor=1"
|
|
2166
|
+
}
|
|
2167
|
+
},
|
|
2168
|
+
"node_modules/proxy-addr": {
|
|
2169
|
+
"version": "2.0.7",
|
|
2170
|
+
"resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz",
|
|
2171
|
+
"integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==",
|
|
2172
|
+
"license": "MIT",
|
|
2173
|
+
"dependencies": {
|
|
2174
|
+
"forwarded": "0.2.0",
|
|
2175
|
+
"ipaddr.js": "1.9.1"
|
|
2176
|
+
},
|
|
2177
|
+
"engines": {
|
|
2178
|
+
"node": ">= 0.10"
|
|
2179
|
+
}
|
|
2180
|
+
},
|
|
2181
|
+
"node_modules/qs": {
|
|
2182
|
+
"version": "6.15.3",
|
|
2183
|
+
"resolved": "https://registry.npmjs.org/qs/-/qs-6.15.3.tgz",
|
|
2184
|
+
"integrity": "sha512-O9gl3zCl5h5blw1KGUzQKhA5oUXSl8rwUIM5o0S3nCXMliSvy5Dzx7/DJcI+SwgICv+IneSZwhBh1oSyEHA71A==",
|
|
2185
|
+
"license": "BSD-3-Clause",
|
|
2186
|
+
"dependencies": {
|
|
2187
|
+
"es-define-property": "^1.0.1",
|
|
2188
|
+
"side-channel": "^1.1.1"
|
|
2189
|
+
},
|
|
2190
|
+
"engines": {
|
|
2191
|
+
"node": ">=0.6"
|
|
2192
|
+
},
|
|
2193
|
+
"funding": {
|
|
2194
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
2195
|
+
}
|
|
2196
|
+
},
|
|
2197
|
+
"node_modules/range-parser": {
|
|
2198
|
+
"version": "1.3.0",
|
|
2199
|
+
"resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.3.0.tgz",
|
|
2200
|
+
"integrity": "sha512-hek2mFQpPuI4E1BBKrSto+BU3e3x4xuarsbiwr3+lf7p44juvFMV0XFWQAP3xUyqXA4RrXLIoaSUGbSt056ZMw==",
|
|
2201
|
+
"license": "MIT",
|
|
2202
|
+
"engines": {
|
|
2203
|
+
"node": ">= 0.6"
|
|
2204
|
+
},
|
|
2205
|
+
"funding": {
|
|
2206
|
+
"type": "opencollective",
|
|
2207
|
+
"url": "https://opencollective.com/express"
|
|
2208
|
+
}
|
|
2209
|
+
},
|
|
2210
|
+
"node_modules/raw-body": {
|
|
2211
|
+
"version": "3.0.2",
|
|
2212
|
+
"resolved": "https://registry.npmjs.org/raw-body/-/raw-body-3.0.2.tgz",
|
|
2213
|
+
"integrity": "sha512-K5zQjDllxWkf7Z5xJdV0/B0WTNqx6vxG70zJE4N0kBs4LovmEYWJzQGxC9bS9RAKu3bgM40lrd5zoLJ12MQ5BA==",
|
|
2214
|
+
"license": "MIT",
|
|
2215
|
+
"dependencies": {
|
|
2216
|
+
"bytes": "~3.1.2",
|
|
2217
|
+
"http-errors": "~2.0.1",
|
|
2218
|
+
"iconv-lite": "~0.7.0",
|
|
2219
|
+
"unpipe": "~1.0.0"
|
|
2220
|
+
},
|
|
2221
|
+
"engines": {
|
|
2222
|
+
"node": ">= 0.10"
|
|
2223
|
+
}
|
|
2224
|
+
},
|
|
2225
|
+
"node_modules/require-from-string": {
|
|
2226
|
+
"version": "2.0.2",
|
|
2227
|
+
"resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz",
|
|
2228
|
+
"integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==",
|
|
2229
|
+
"license": "MIT",
|
|
2230
|
+
"engines": {
|
|
2231
|
+
"node": ">=0.10.0"
|
|
2232
|
+
}
|
|
2233
|
+
},
|
|
2234
|
+
"node_modules/router": {
|
|
2235
|
+
"version": "2.2.0",
|
|
2236
|
+
"resolved": "https://registry.npmjs.org/router/-/router-2.2.0.tgz",
|
|
2237
|
+
"integrity": "sha512-nLTrUKm2UyiL7rlhapu/Zl45FwNgkZGaCpZbIHajDYgwlJCOzLSk+cIPAnsEqV955GjILJnKbdQC1nVPz+gAYQ==",
|
|
2238
|
+
"license": "MIT",
|
|
2239
|
+
"dependencies": {
|
|
2240
|
+
"debug": "^4.4.0",
|
|
2241
|
+
"depd": "^2.0.0",
|
|
2242
|
+
"is-promise": "^4.0.0",
|
|
2243
|
+
"parseurl": "^1.3.3",
|
|
2244
|
+
"path-to-regexp": "^8.0.0"
|
|
2245
|
+
},
|
|
2246
|
+
"engines": {
|
|
2247
|
+
"node": ">= 18"
|
|
2248
|
+
}
|
|
2249
|
+
},
|
|
2250
|
+
"node_modules/safer-buffer": {
|
|
2251
|
+
"version": "2.1.2",
|
|
2252
|
+
"resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz",
|
|
2253
|
+
"integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==",
|
|
2254
|
+
"license": "MIT"
|
|
2255
|
+
},
|
|
2256
|
+
"node_modules/semver": {
|
|
2257
|
+
"version": "6.3.1",
|
|
2258
|
+
"resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz",
|
|
2259
|
+
"integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==",
|
|
2260
|
+
"license": "ISC",
|
|
2261
|
+
"bin": {
|
|
2262
|
+
"semver": "bin/semver.js"
|
|
2263
|
+
}
|
|
2264
|
+
},
|
|
2265
|
+
"node_modules/send": {
|
|
2266
|
+
"version": "1.2.1",
|
|
2267
|
+
"resolved": "https://registry.npmjs.org/send/-/send-1.2.1.tgz",
|
|
2268
|
+
"integrity": "sha512-1gnZf7DFcoIcajTjTwjwuDjzuz4PPcY2StKPlsGAQ1+YH20IRVrBaXSWmdjowTJ6u8Rc01PoYOGHXfP1mYcZNQ==",
|
|
2269
|
+
"license": "MIT",
|
|
2270
|
+
"dependencies": {
|
|
2271
|
+
"debug": "^4.4.3",
|
|
2272
|
+
"encodeurl": "^2.0.0",
|
|
2273
|
+
"escape-html": "^1.0.3",
|
|
2274
|
+
"etag": "^1.8.1",
|
|
2275
|
+
"fresh": "^2.0.0",
|
|
2276
|
+
"http-errors": "^2.0.1",
|
|
2277
|
+
"mime-types": "^3.0.2",
|
|
2278
|
+
"ms": "^2.1.3",
|
|
2279
|
+
"on-finished": "^2.4.1",
|
|
2280
|
+
"range-parser": "^1.2.1",
|
|
2281
|
+
"statuses": "^2.0.2"
|
|
2282
|
+
},
|
|
2283
|
+
"engines": {
|
|
2284
|
+
"node": ">= 18"
|
|
2285
|
+
},
|
|
2286
|
+
"funding": {
|
|
2287
|
+
"type": "opencollective",
|
|
2288
|
+
"url": "https://opencollective.com/express"
|
|
2289
|
+
}
|
|
2290
|
+
},
|
|
2291
|
+
"node_modules/serve-static": {
|
|
2292
|
+
"version": "2.2.1",
|
|
2293
|
+
"resolved": "https://registry.npmjs.org/serve-static/-/serve-static-2.2.1.tgz",
|
|
2294
|
+
"integrity": "sha512-xRXBn0pPqQTVQiC8wyQrKs2MOlX24zQ0POGaj0kultvoOCstBQM5yvOhAVSUwOMjQtTvsPWoNCHfPGwaaQJhTw==",
|
|
2295
|
+
"license": "MIT",
|
|
2296
|
+
"dependencies": {
|
|
2297
|
+
"encodeurl": "^2.0.0",
|
|
2298
|
+
"escape-html": "^1.0.3",
|
|
2299
|
+
"parseurl": "^1.3.3",
|
|
2300
|
+
"send": "^1.2.0"
|
|
2301
|
+
},
|
|
2302
|
+
"engines": {
|
|
2303
|
+
"node": ">= 18"
|
|
2304
|
+
},
|
|
2305
|
+
"funding": {
|
|
2306
|
+
"type": "opencollective",
|
|
2307
|
+
"url": "https://opencollective.com/express"
|
|
2308
|
+
}
|
|
2309
|
+
},
|
|
2310
|
+
"node_modules/setprototypeof": {
|
|
2311
|
+
"version": "1.2.0",
|
|
2312
|
+
"resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz",
|
|
2313
|
+
"integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==",
|
|
2314
|
+
"license": "ISC"
|
|
2315
|
+
},
|
|
2316
|
+
"node_modules/shebang-command": {
|
|
2317
|
+
"version": "2.0.0",
|
|
2318
|
+
"resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz",
|
|
2319
|
+
"integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==",
|
|
2320
|
+
"license": "MIT",
|
|
2321
|
+
"dependencies": {
|
|
2322
|
+
"shebang-regex": "^3.0.0"
|
|
2323
|
+
},
|
|
2324
|
+
"engines": {
|
|
2325
|
+
"node": ">=8"
|
|
2326
|
+
}
|
|
2327
|
+
},
|
|
2328
|
+
"node_modules/shebang-regex": {
|
|
2329
|
+
"version": "3.0.0",
|
|
2330
|
+
"resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz",
|
|
2331
|
+
"integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==",
|
|
2332
|
+
"license": "MIT",
|
|
2333
|
+
"engines": {
|
|
2334
|
+
"node": ">=8"
|
|
2335
|
+
}
|
|
2336
|
+
},
|
|
2337
|
+
"node_modules/side-channel": {
|
|
2338
|
+
"version": "1.1.1",
|
|
2339
|
+
"resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.1.1.tgz",
|
|
2340
|
+
"integrity": "sha512-6x6dK6zJdpTzF4sQeNYxwtvBzf6Eg4GtlesS94HOvTudUeyK2WXAaIfmDgsyslYrRBeFIlsi54AYsFGUuhmvrQ==",
|
|
2341
|
+
"license": "MIT",
|
|
2342
|
+
"dependencies": {
|
|
2343
|
+
"es-errors": "^1.3.0",
|
|
2344
|
+
"object-inspect": "^1.13.4",
|
|
2345
|
+
"side-channel-list": "^1.0.1",
|
|
2346
|
+
"side-channel-map": "^1.0.1",
|
|
2347
|
+
"side-channel-weakmap": "^1.0.2"
|
|
2348
|
+
},
|
|
2349
|
+
"engines": {
|
|
2350
|
+
"node": ">= 0.4"
|
|
2351
|
+
},
|
|
2352
|
+
"funding": {
|
|
2353
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
2354
|
+
}
|
|
2355
|
+
},
|
|
2356
|
+
"node_modules/side-channel-list": {
|
|
2357
|
+
"version": "1.0.1",
|
|
2358
|
+
"resolved": "https://registry.npmjs.org/side-channel-list/-/side-channel-list-1.0.1.tgz",
|
|
2359
|
+
"integrity": "sha512-mjn/0bi/oUURjc5Xl7IaWi/OJJJumuoJFQJfDDyO46+hBWsfaVM65TBHq2eoZBhzl9EchxOijpkbRC8SVBQU0w==",
|
|
2360
|
+
"license": "MIT",
|
|
2361
|
+
"dependencies": {
|
|
2362
|
+
"es-errors": "^1.3.0",
|
|
2363
|
+
"object-inspect": "^1.13.4"
|
|
2364
|
+
},
|
|
2365
|
+
"engines": {
|
|
2366
|
+
"node": ">= 0.4"
|
|
2367
|
+
},
|
|
2368
|
+
"funding": {
|
|
2369
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
2370
|
+
}
|
|
2371
|
+
},
|
|
2372
|
+
"node_modules/side-channel-map": {
|
|
2373
|
+
"version": "1.0.1",
|
|
2374
|
+
"resolved": "https://registry.npmjs.org/side-channel-map/-/side-channel-map-1.0.1.tgz",
|
|
2375
|
+
"integrity": "sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==",
|
|
2376
|
+
"license": "MIT",
|
|
2377
|
+
"dependencies": {
|
|
2378
|
+
"call-bound": "^1.0.2",
|
|
2379
|
+
"es-errors": "^1.3.0",
|
|
2380
|
+
"get-intrinsic": "^1.2.5",
|
|
2381
|
+
"object-inspect": "^1.13.3"
|
|
2382
|
+
},
|
|
2383
|
+
"engines": {
|
|
2384
|
+
"node": ">= 0.4"
|
|
2385
|
+
},
|
|
2386
|
+
"funding": {
|
|
2387
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
2388
|
+
}
|
|
2389
|
+
},
|
|
2390
|
+
"node_modules/side-channel-weakmap": {
|
|
2391
|
+
"version": "1.0.2",
|
|
2392
|
+
"resolved": "https://registry.npmjs.org/side-channel-weakmap/-/side-channel-weakmap-1.0.2.tgz",
|
|
2393
|
+
"integrity": "sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==",
|
|
2394
|
+
"license": "MIT",
|
|
2395
|
+
"dependencies": {
|
|
2396
|
+
"call-bound": "^1.0.2",
|
|
2397
|
+
"es-errors": "^1.3.0",
|
|
2398
|
+
"get-intrinsic": "^1.2.5",
|
|
2399
|
+
"object-inspect": "^1.13.3",
|
|
2400
|
+
"side-channel-map": "^1.0.1"
|
|
2401
|
+
},
|
|
2402
|
+
"engines": {
|
|
2403
|
+
"node": ">= 0.4"
|
|
2404
|
+
},
|
|
2405
|
+
"funding": {
|
|
2406
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
2407
|
+
}
|
|
2408
|
+
},
|
|
2409
|
+
"node_modules/statuses": {
|
|
2410
|
+
"version": "2.0.2",
|
|
2411
|
+
"resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.2.tgz",
|
|
2412
|
+
"integrity": "sha512-DvEy55V3DB7uknRo+4iOGT5fP1slR8wQohVdknigZPMpMstaKJQWhwiYBACJE3Ul2pTnATihhBYnRhZQHGBiRw==",
|
|
2413
|
+
"license": "MIT",
|
|
2414
|
+
"engines": {
|
|
2415
|
+
"node": ">= 0.8"
|
|
2416
|
+
}
|
|
2417
|
+
},
|
|
2418
|
+
"node_modules/string-width": {
|
|
2419
|
+
"version": "7.2.0",
|
|
2420
|
+
"resolved": "https://registry.npmjs.org/string-width/-/string-width-7.2.0.tgz",
|
|
2421
|
+
"integrity": "sha512-tsaTIkKW9b4N+AEj+SVA+WhJzV7/zMhcSu78mLKWSk7cXMOSHsBKFWUs0fWwq8QyK3MgJBQRX6Gbi4kYbdvGkQ==",
|
|
2422
|
+
"license": "MIT",
|
|
2423
|
+
"dependencies": {
|
|
2424
|
+
"emoji-regex": "^10.3.0",
|
|
2425
|
+
"get-east-asian-width": "^1.0.0",
|
|
2426
|
+
"strip-ansi": "^7.1.0"
|
|
2427
|
+
},
|
|
2428
|
+
"engines": {
|
|
2429
|
+
"node": ">=18"
|
|
2430
|
+
},
|
|
2431
|
+
"funding": {
|
|
2432
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
2433
|
+
}
|
|
2434
|
+
},
|
|
2435
|
+
"node_modules/strip-ansi": {
|
|
2436
|
+
"version": "7.2.0",
|
|
2437
|
+
"resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.2.0.tgz",
|
|
2438
|
+
"integrity": "sha512-yDPMNjp4WyfYBkHnjIRLfca1i6KMyGCtsVgoKe/z1+6vukgaENdgGBZt+ZmKPc4gavvEZ5OgHfHdrazhgNyG7w==",
|
|
2439
|
+
"license": "MIT",
|
|
2440
|
+
"dependencies": {
|
|
2441
|
+
"ansi-regex": "^6.2.2"
|
|
2442
|
+
},
|
|
2443
|
+
"engines": {
|
|
2444
|
+
"node": ">=12"
|
|
2445
|
+
},
|
|
2446
|
+
"funding": {
|
|
2447
|
+
"url": "https://github.com/chalk/strip-ansi?sponsor=1"
|
|
2448
|
+
}
|
|
2449
|
+
},
|
|
2450
|
+
"node_modules/tinyglobby": {
|
|
2451
|
+
"version": "0.2.17",
|
|
2452
|
+
"resolved": "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.17.tgz",
|
|
2453
|
+
"integrity": "sha512-wXR/dYpcqKmfWpEdZjiKJOwCNFndD0DMnrW/cYjVGttEkBfVgcLFHoNrlj47mjOVic9yyNu65alsgF4NQyTa2g==",
|
|
2454
|
+
"license": "MIT",
|
|
2455
|
+
"dependencies": {
|
|
2456
|
+
"fdir": "^6.5.0",
|
|
2457
|
+
"picomatch": "^4.0.4"
|
|
2458
|
+
},
|
|
2459
|
+
"engines": {
|
|
2460
|
+
"node": ">=12.0.0"
|
|
2461
|
+
},
|
|
2462
|
+
"funding": {
|
|
2463
|
+
"url": "https://github.com/sponsors/SuperchupuDev"
|
|
2464
|
+
}
|
|
2465
|
+
},
|
|
2466
|
+
"node_modules/toidentifier": {
|
|
2467
|
+
"version": "1.0.1",
|
|
2468
|
+
"resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz",
|
|
2469
|
+
"integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==",
|
|
2470
|
+
"license": "MIT",
|
|
2471
|
+
"engines": {
|
|
2472
|
+
"node": ">=0.6"
|
|
2473
|
+
}
|
|
2474
|
+
},
|
|
2475
|
+
"node_modules/type-is": {
|
|
2476
|
+
"version": "2.1.0",
|
|
2477
|
+
"resolved": "https://registry.npmjs.org/type-is/-/type-is-2.1.0.tgz",
|
|
2478
|
+
"integrity": "sha512-faYHw0anBbc/kWF3zFTEnxSFOAGUX9GFbOBthvDdLsIlEoWOFOtS0zgCiQYwIskL9iGXZL3kAXD8OoZ4GmMATA==",
|
|
2479
|
+
"license": "MIT",
|
|
2480
|
+
"dependencies": {
|
|
2481
|
+
"content-type": "^2.0.0",
|
|
2482
|
+
"media-typer": "^1.1.0",
|
|
2483
|
+
"mime-types": "^3.0.0"
|
|
2484
|
+
},
|
|
2485
|
+
"engines": {
|
|
2486
|
+
"node": ">= 18"
|
|
2487
|
+
},
|
|
2488
|
+
"funding": {
|
|
2489
|
+
"type": "opencollective",
|
|
2490
|
+
"url": "https://opencollective.com/express"
|
|
2491
|
+
}
|
|
2492
|
+
},
|
|
2493
|
+
"node_modules/type-is/node_modules/content-type": {
|
|
2494
|
+
"version": "2.0.0",
|
|
2495
|
+
"resolved": "https://registry.npmjs.org/content-type/-/content-type-2.0.0.tgz",
|
|
2496
|
+
"integrity": "sha512-j/O/d7GcZCyNl7/hwZAb606rzqkyvaDctLmckbxLzHvFBzTJHuGEdodATcP3yIRoDrLHkIATJuvzbFlp/ki2cQ==",
|
|
2497
|
+
"license": "MIT",
|
|
2498
|
+
"engines": {
|
|
2499
|
+
"node": ">=18"
|
|
2500
|
+
},
|
|
2501
|
+
"funding": {
|
|
2502
|
+
"type": "opencollective",
|
|
2503
|
+
"url": "https://opencollective.com/express"
|
|
2504
|
+
}
|
|
2505
|
+
},
|
|
2506
|
+
"node_modules/typescript": {
|
|
2507
|
+
"version": "7.0.2",
|
|
2508
|
+
"resolved": "https://registry.npmjs.org/typescript/-/typescript-7.0.2.tgz",
|
|
2509
|
+
"integrity": "sha512-8FYau96o3NKOhbjKi/qNvG/W5jhzxkbdm5sj9AbZ/5T5sWqn3hJgLfGx27sRKZWTvyzCP8dLRBTf5tBTSRVUNA==",
|
|
2510
|
+
"dev": true,
|
|
2511
|
+
"license": "Apache-2.0",
|
|
2512
|
+
"bin": {
|
|
2513
|
+
"tsc": "bin/tsc"
|
|
2514
|
+
},
|
|
2515
|
+
"engines": {
|
|
2516
|
+
"node": ">=16.20.0"
|
|
2517
|
+
},
|
|
2518
|
+
"optionalDependencies": {
|
|
2519
|
+
"@typescript/typescript-aix-ppc64": "7.0.2",
|
|
2520
|
+
"@typescript/typescript-darwin-arm64": "7.0.2",
|
|
2521
|
+
"@typescript/typescript-darwin-x64": "7.0.2",
|
|
2522
|
+
"@typescript/typescript-freebsd-arm64": "7.0.2",
|
|
2523
|
+
"@typescript/typescript-freebsd-x64": "7.0.2",
|
|
2524
|
+
"@typescript/typescript-linux-arm": "7.0.2",
|
|
2525
|
+
"@typescript/typescript-linux-arm64": "7.0.2",
|
|
2526
|
+
"@typescript/typescript-linux-loong64": "7.0.2",
|
|
2527
|
+
"@typescript/typescript-linux-mips64el": "7.0.2",
|
|
2528
|
+
"@typescript/typescript-linux-ppc64": "7.0.2",
|
|
2529
|
+
"@typescript/typescript-linux-riscv64": "7.0.2",
|
|
2530
|
+
"@typescript/typescript-linux-s390x": "7.0.2",
|
|
2531
|
+
"@typescript/typescript-linux-x64": "7.0.2",
|
|
2532
|
+
"@typescript/typescript-netbsd-arm64": "7.0.2",
|
|
2533
|
+
"@typescript/typescript-netbsd-x64": "7.0.2",
|
|
2534
|
+
"@typescript/typescript-openbsd-arm64": "7.0.2",
|
|
2535
|
+
"@typescript/typescript-openbsd-x64": "7.0.2",
|
|
2536
|
+
"@typescript/typescript-sunos-x64": "7.0.2",
|
|
2537
|
+
"@typescript/typescript-win32-arm64": "7.0.2",
|
|
2538
|
+
"@typescript/typescript-win32-x64": "7.0.2"
|
|
2539
|
+
}
|
|
2540
|
+
},
|
|
2541
|
+
"node_modules/undici-types": {
|
|
2542
|
+
"version": "6.21.0",
|
|
2543
|
+
"resolved": "https://registry.npmjs.org/undici-types/-/undici-types-6.21.0.tgz",
|
|
2544
|
+
"integrity": "sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ==",
|
|
2545
|
+
"dev": true,
|
|
2546
|
+
"license": "MIT"
|
|
2547
|
+
},
|
|
2548
|
+
"node_modules/unpipe": {
|
|
2549
|
+
"version": "1.0.0",
|
|
2550
|
+
"resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz",
|
|
2551
|
+
"integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==",
|
|
2552
|
+
"license": "MIT",
|
|
2553
|
+
"engines": {
|
|
2554
|
+
"node": ">= 0.8"
|
|
2555
|
+
}
|
|
2556
|
+
},
|
|
2557
|
+
"node_modules/uuid": {
|
|
2558
|
+
"version": "14.0.1",
|
|
2559
|
+
"resolved": "https://registry.npmjs.org/uuid/-/uuid-14.0.1.tgz",
|
|
2560
|
+
"integrity": "sha512-6ZxzVpzDXDa3bJWaHilVayA+BH/1zmxCJoVgvmqJnid/gPoKHxUrS/aC/T6LGQtNHT+XHG9fXPJB4d+IrU30Ew==",
|
|
2561
|
+
"funding": [
|
|
2562
|
+
"https://github.com/sponsors/broofa",
|
|
2563
|
+
"https://github.com/sponsors/ctavan"
|
|
2564
|
+
],
|
|
2565
|
+
"license": "MIT",
|
|
2566
|
+
"bin": {
|
|
2567
|
+
"uuid": "dist-node/bin/uuid"
|
|
2568
|
+
}
|
|
2569
|
+
},
|
|
2570
|
+
"node_modules/vary": {
|
|
2571
|
+
"version": "1.1.2",
|
|
2572
|
+
"resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz",
|
|
2573
|
+
"integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==",
|
|
2574
|
+
"license": "MIT",
|
|
2575
|
+
"engines": {
|
|
2576
|
+
"node": ">= 0.8"
|
|
2577
|
+
}
|
|
2578
|
+
},
|
|
2579
|
+
"node_modules/which": {
|
|
2580
|
+
"version": "2.0.2",
|
|
2581
|
+
"resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz",
|
|
2582
|
+
"integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==",
|
|
2583
|
+
"license": "ISC",
|
|
2584
|
+
"dependencies": {
|
|
2585
|
+
"isexe": "^2.0.0"
|
|
2586
|
+
},
|
|
2587
|
+
"bin": {
|
|
2588
|
+
"node-which": "bin/node-which"
|
|
2589
|
+
},
|
|
2590
|
+
"engines": {
|
|
2591
|
+
"node": ">= 8"
|
|
2592
|
+
}
|
|
2593
|
+
},
|
|
2594
|
+
"node_modules/wrap-ansi": {
|
|
2595
|
+
"version": "9.0.2",
|
|
2596
|
+
"resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-9.0.2.tgz",
|
|
2597
|
+
"integrity": "sha512-42AtmgqjV+X1VpdOfyTGOYRi0/zsoLqtXQckTmqTeybT+BDIbM/Guxo7x3pE2vtpr1ok6xRqM9OpBe+Jyoqyww==",
|
|
2598
|
+
"license": "MIT",
|
|
2599
|
+
"dependencies": {
|
|
2600
|
+
"ansi-styles": "^6.2.1",
|
|
2601
|
+
"string-width": "^7.0.0",
|
|
2602
|
+
"strip-ansi": "^7.1.0"
|
|
2603
|
+
},
|
|
2604
|
+
"engines": {
|
|
2605
|
+
"node": ">=18"
|
|
2606
|
+
},
|
|
2607
|
+
"funding": {
|
|
2608
|
+
"url": "https://github.com/chalk/wrap-ansi?sponsor=1"
|
|
2609
|
+
}
|
|
2610
|
+
},
|
|
2611
|
+
"node_modules/wrappy": {
|
|
2612
|
+
"version": "1.0.2",
|
|
2613
|
+
"resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz",
|
|
2614
|
+
"integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==",
|
|
2615
|
+
"license": "ISC"
|
|
2616
|
+
},
|
|
2617
|
+
"node_modules/y18n": {
|
|
2618
|
+
"version": "5.0.8",
|
|
2619
|
+
"resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz",
|
|
2620
|
+
"integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==",
|
|
2621
|
+
"license": "ISC",
|
|
2622
|
+
"engines": {
|
|
2623
|
+
"node": ">=10"
|
|
2624
|
+
}
|
|
2625
|
+
},
|
|
2626
|
+
"node_modules/yargs": {
|
|
2627
|
+
"version": "18.0.0",
|
|
2628
|
+
"resolved": "https://registry.npmjs.org/yargs/-/yargs-18.0.0.tgz",
|
|
2629
|
+
"integrity": "sha512-4UEqdc2RYGHZc7Doyqkrqiln3p9X2DZVxaGbwhn2pi7MrRagKaOcIKe8L3OxYcbhXLgLFUS3zAYuQjKBQgmuNg==",
|
|
2630
|
+
"license": "MIT",
|
|
2631
|
+
"dependencies": {
|
|
2632
|
+
"cliui": "^9.0.1",
|
|
2633
|
+
"escalade": "^3.1.1",
|
|
2634
|
+
"get-caller-file": "^2.0.5",
|
|
2635
|
+
"string-width": "^7.2.0",
|
|
2636
|
+
"y18n": "^5.0.5",
|
|
2637
|
+
"yargs-parser": "^22.0.0"
|
|
2638
|
+
},
|
|
2639
|
+
"engines": {
|
|
2640
|
+
"node": "^20.19.0 || ^22.12.0 || >=23"
|
|
2641
|
+
}
|
|
2642
|
+
},
|
|
2643
|
+
"node_modules/yargs-parser": {
|
|
2644
|
+
"version": "22.0.0",
|
|
2645
|
+
"resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-22.0.0.tgz",
|
|
2646
|
+
"integrity": "sha512-rwu/ClNdSMpkSrUb+d6BRsSkLUq1fmfsY6TOpYzTwvwkg1/NRG85KBy3kq++A8LKQwX6lsu+aWad+2khvuXrqw==",
|
|
2647
|
+
"license": "ISC",
|
|
2648
|
+
"engines": {
|
|
2649
|
+
"node": "^20.19.0 || ^22.12.0 || >=23"
|
|
2650
|
+
}
|
|
2651
|
+
},
|
|
2652
|
+
"node_modules/zod": {
|
|
2653
|
+
"version": "4.4.3",
|
|
2654
|
+
"resolved": "https://registry.npmjs.org/zod/-/zod-4.4.3.tgz",
|
|
2655
|
+
"integrity": "sha512-ytENFjIJFl2UwYglde2jchW2Hwm4GJFLDiSXWdTrJQBIN9Fcyp7n4DhxJEiWNAJMV1/BqWfW/kkg71UDcHJyTQ==",
|
|
2656
|
+
"license": "MIT",
|
|
2657
|
+
"funding": {
|
|
2658
|
+
"url": "https://github.com/sponsors/colinhacks"
|
|
2659
|
+
}
|
|
2660
|
+
},
|
|
2661
|
+
"node_modules/zod-to-json-schema": {
|
|
2662
|
+
"version": "3.25.2",
|
|
2663
|
+
"resolved": "https://registry.npmjs.org/zod-to-json-schema/-/zod-to-json-schema-3.25.2.tgz",
|
|
2664
|
+
"integrity": "sha512-O/PgfnpT1xKSDeQYSCfRI5Gy3hPf91mKVDuYLUHZJMiDFptvP41MSnWofm8dnCm0256ZNfZIM7DSzuSMAFnjHA==",
|
|
2665
|
+
"license": "ISC",
|
|
2666
|
+
"peerDependencies": {
|
|
2667
|
+
"zod": "^3.25.28 || ^4"
|
|
2668
|
+
}
|
|
2669
|
+
}
|
|
2670
|
+
}
|
|
2671
|
+
}
|