@rubytech/create-realagent-code 0.1.118 → 0.1.121
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/package.json +1 -1
- package/payload/platform/neo4j/schema.cypher +92 -1
- package/payload/platform/package-lock.json +141 -125
- package/payload/platform/plugins/aeo/PLUGIN.md +1 -1
- package/payload/platform/plugins/contacts/mcp/dist/tools/contact-erase.d.ts +12 -1
- package/payload/platform/plugins/contacts/mcp/dist/tools/contact-erase.d.ts.map +1 -1
- package/payload/platform/plugins/contacts/mcp/dist/tools/contact-erase.js +34 -1
- package/payload/platform/plugins/contacts/mcp/dist/tools/contact-erase.js.map +1 -1
- package/payload/platform/plugins/docs/references/aeo.md +2 -2
- package/payload/platform/plugins/docs/references/visitor-graph.md +82 -0
- package/payload/platform/plugins/memory/references/schema-base.md +44 -0
- package/payload/premium-plugins/real-agent/plugins/buyers/.claude-plugin/plugin.json +1 -1
- package/payload/premium-plugins/real-agent/plugins/buyers/PLUGIN.md +33 -3
- package/payload/premium-plugins/real-agent/plugins/buyers/mcp/dist/index.d.ts +2 -0
- package/payload/premium-plugins/real-agent/plugins/buyers/mcp/dist/index.d.ts.map +1 -0
- package/payload/premium-plugins/real-agent/plugins/buyers/mcp/dist/index.js +97 -0
- package/payload/premium-plugins/real-agent/plugins/buyers/mcp/dist/index.js.map +1 -0
- package/payload/premium-plugins/real-agent/plugins/buyers/mcp/dist/lib/neo4j.d.ts +5 -0
- package/payload/premium-plugins/real-agent/plugins/buyers/mcp/dist/lib/neo4j.d.ts.map +1 -0
- package/payload/premium-plugins/real-agent/plugins/buyers/mcp/dist/lib/neo4j.js +40 -0
- package/payload/premium-plugins/real-agent/plugins/buyers/mcp/dist/lib/neo4j.js.map +1 -0
- package/payload/premium-plugins/real-agent/plugins/buyers/mcp/dist/tools/visitor-backfill-from-logs.d.ts +24 -0
- package/payload/premium-plugins/real-agent/plugins/buyers/mcp/dist/tools/visitor-backfill-from-logs.d.ts.map +1 -0
- package/payload/premium-plugins/real-agent/plugins/buyers/mcp/dist/tools/visitor-backfill-from-logs.js +156 -0
- package/payload/premium-plugins/real-agent/plugins/buyers/mcp/dist/tools/visitor-backfill-from-logs.js.map +1 -0
- package/payload/premium-plugins/real-agent/plugins/buyers/mcp/dist/tools/visitor-engagement-score.d.ts +21 -0
- package/payload/premium-plugins/real-agent/plugins/buyers/mcp/dist/tools/visitor-engagement-score.d.ts.map +1 -0
- package/payload/premium-plugins/real-agent/plugins/buyers/mcp/dist/tools/visitor-engagement-score.js +65 -0
- package/payload/premium-plugins/real-agent/plugins/buyers/mcp/dist/tools/visitor-engagement-score.js.map +1 -0
- package/payload/premium-plugins/real-agent/plugins/buyers/mcp/dist/tools/visitor-event-ingest.d.ts +26 -0
- package/payload/premium-plugins/real-agent/plugins/buyers/mcp/dist/tools/visitor-event-ingest.d.ts.map +1 -0
- package/payload/premium-plugins/real-agent/plugins/buyers/mcp/dist/tools/visitor-event-ingest.js +78 -0
- package/payload/premium-plugins/real-agent/plugins/buyers/mcp/dist/tools/visitor-event-ingest.js.map +1 -0
- package/payload/premium-plugins/real-agent/plugins/buyers/mcp/dist/tools/visitor-recent-by-page.d.ts +19 -0
- package/payload/premium-plugins/real-agent/plugins/buyers/mcp/dist/tools/visitor-recent-by-page.d.ts.map +1 -0
- package/payload/premium-plugins/real-agent/plugins/buyers/mcp/dist/tools/visitor-recent-by-page.js +41 -0
- package/payload/premium-plugins/real-agent/plugins/buyers/mcp/dist/tools/visitor-recent-by-page.js.map +1 -0
- package/payload/premium-plugins/real-agent/plugins/buyers/mcp/dist/tools/visitor-recent-by-person.d.ts +20 -0
- package/payload/premium-plugins/real-agent/plugins/buyers/mcp/dist/tools/visitor-recent-by-person.d.ts.map +1 -0
- package/payload/premium-plugins/real-agent/plugins/buyers/mcp/dist/tools/visitor-recent-by-person.js +44 -0
- package/payload/premium-plugins/real-agent/plugins/buyers/mcp/dist/tools/visitor-recent-by-person.js.map +1 -0
- package/payload/premium-plugins/real-agent/plugins/buyers/mcp/dist/tools/visitor-recommendation-ctr.d.ts +22 -0
- package/payload/premium-plugins/real-agent/plugins/buyers/mcp/dist/tools/visitor-recommendation-ctr.d.ts.map +1 -0
- package/payload/premium-plugins/real-agent/plugins/buyers/mcp/dist/tools/visitor-recommendation-ctr.js +41 -0
- package/payload/premium-plugins/real-agent/plugins/buyers/mcp/dist/tools/visitor-recommendation-ctr.js.map +1 -0
- package/payload/premium-plugins/real-agent/plugins/buyers/mcp/dist/tools/visitor-session-detail.d.ts +32 -0
- package/payload/premium-plugins/real-agent/plugins/buyers/mcp/dist/tools/visitor-session-detail.d.ts.map +1 -0
- package/payload/premium-plugins/real-agent/plugins/buyers/mcp/dist/tools/visitor-session-detail.js +87 -0
- package/payload/premium-plugins/real-agent/plugins/buyers/mcp/dist/tools/visitor-session-detail.js.map +1 -0
- package/payload/premium-plugins/real-agent/plugins/buyers/mcp/package-lock.json +2566 -0
- package/payload/premium-plugins/real-agent/plugins/buyers/mcp/package.json +21 -0
- package/payload/premium-plugins/real-agent/plugins/buyers/mcp/src/index.ts +145 -0
- package/payload/premium-plugins/real-agent/plugins/buyers/mcp/src/lib/neo4j.ts +45 -0
- package/payload/premium-plugins/real-agent/plugins/buyers/mcp/src/tools/visitor-backfill-from-logs.ts +189 -0
- package/payload/premium-plugins/real-agent/plugins/buyers/mcp/src/tools/visitor-engagement-score.ts +87 -0
- package/payload/premium-plugins/real-agent/plugins/buyers/mcp/src/tools/visitor-event-ingest.ts +119 -0
- package/payload/premium-plugins/real-agent/plugins/buyers/mcp/src/tools/visitor-recent-by-page.ts +61 -0
- package/payload/premium-plugins/real-agent/plugins/buyers/mcp/src/tools/visitor-recent-by-person.ts +65 -0
- package/payload/premium-plugins/real-agent/plugins/buyers/mcp/src/tools/visitor-recommendation-ctr.ts +67 -0
- package/payload/premium-plugins/real-agent/plugins/buyers/mcp/src/tools/visitor-session-detail.ts +127 -0
- package/payload/premium-plugins/real-agent/plugins/buyers/mcp/tsconfig.json +20 -0
- package/payload/premium-plugins/real-agent/plugins/buyers/skills/property-recommender/SKILL.md +11 -0
- package/payload/premium-plugins/real-agent/plugins/leads/skills/lead-nurturing/SKILL.md +9 -0
- package/payload/premium-plugins/real-agent/plugins/leads/skills/morning-round/SKILL.md +11 -0
- package/payload/premium-plugins/real-agent/plugins/vendors/skills/vendor-updates/SKILL.md +13 -0
- package/payload/server/{chunk-FJCI6X3H.js → chunk-HCYM5FLU.js} +2 -0
- package/payload/server/maxy-edge.js +1 -1
- package/payload/server/public/privacy.html +66 -0
- package/payload/server/public/v.js +191 -0
- package/payload/server/server.js +473 -85
package/package.json
CHANGED
|
@@ -355,7 +355,7 @@ FOR (n:LocalBusiness|Service|PriceSpecification|OpeningHoursSpecification|Organi
|
|
|
355
355
|
|Task|Project|Event
|
|
356
356
|
|Workflow|WorkflowStep|WorkflowRun|StepResult
|
|
357
357
|
|Email|EmailAccount
|
|
358
|
-
|Position|Credential|Agent)
|
|
358
|
+
|Position|Credential|Agent|Idea)
|
|
359
359
|
ON EACH [n.name, n.firstName, n.lastName, n.givenName, n.familyName,
|
|
360
360
|
n.title, n.currentTitle, n.summary, n.body, n.content, n.text, n.description, n.headline, n.abstract,
|
|
361
361
|
n.email, n.note, n.label, n.value, n.message, n.preview, n.tagline,
|
|
@@ -1204,3 +1204,94 @@ FOR (a:AEOAudit) ON (a.target);
|
|
|
1204
1204
|
|
|
1205
1205
|
CREATE INDEX aeo_audit_run_at IF NOT EXISTS
|
|
1206
1206
|
FOR (a:AEOAudit) ON (a.runAt);
|
|
1207
|
+
|
|
1208
|
+
// ----------------------------------------------------------
|
|
1209
|
+
// Visitor graph (Task 357)
|
|
1210
|
+
//
|
|
1211
|
+
// Pixel emits pageview/click/scroll/dwell to POST /v/event. Events land
|
|
1212
|
+
// under :Session, attributed to :Person (via signed-token cookie) or
|
|
1213
|
+
// :AnonVisitor (cookie-less). When a previously anonymous browser
|
|
1214
|
+
// completes its first signed-token click, the AnonVisitor merges into
|
|
1215
|
+
// the Person and prior :Session edges reattribute. Schema-org-ish:
|
|
1216
|
+
// Session/PageView/Click are bespoke (no schema.org coverage of analytics);
|
|
1217
|
+
// Page is `schema:WebPage`-shaped (url, name).
|
|
1218
|
+
//
|
|
1219
|
+
// Multi-tenancy: every node carries accountId. Uniqueness constraints
|
|
1220
|
+
// are composite (accountId, idKey) — sessionId/visitorId/url collisions
|
|
1221
|
+
// across accounts are valid.
|
|
1222
|
+
//
|
|
1223
|
+
// Cascade: contact-erase on :Person trashes (:Session)-[:HAS_EVENT]->(*)
|
|
1224
|
+
// the same way profile-delete cascades preferences. :Page and :Listing
|
|
1225
|
+
// are content metadata and intentionally survive (no PII).
|
|
1226
|
+
// ----------------------------------------------------------
|
|
1227
|
+
|
|
1228
|
+
CREATE CONSTRAINT session_id_unique IF NOT EXISTS
|
|
1229
|
+
FOR (s:Session) REQUIRE (s.accountId, s.sessionId) IS UNIQUE;
|
|
1230
|
+
|
|
1231
|
+
CREATE INDEX session_account IF NOT EXISTS
|
|
1232
|
+
FOR (s:Session) ON (s.accountId);
|
|
1233
|
+
|
|
1234
|
+
CREATE INDEX session_started_at IF NOT EXISTS
|
|
1235
|
+
FOR (s:Session) ON (s.startedAt);
|
|
1236
|
+
|
|
1237
|
+
CREATE CONSTRAINT anon_visitor_id_unique IF NOT EXISTS
|
|
1238
|
+
FOR (av:AnonVisitor) REQUIRE (av.accountId, av.visitorId) IS UNIQUE;
|
|
1239
|
+
|
|
1240
|
+
CREATE INDEX anon_visitor_account IF NOT EXISTS
|
|
1241
|
+
FOR (av:AnonVisitor) ON (av.accountId);
|
|
1242
|
+
|
|
1243
|
+
CREATE CONSTRAINT page_url_unique IF NOT EXISTS
|
|
1244
|
+
FOR (pg:Page) REQUIRE (pg.accountId, pg.url) IS UNIQUE;
|
|
1245
|
+
|
|
1246
|
+
CREATE INDEX page_account IF NOT EXISTS
|
|
1247
|
+
FOR (pg:Page) ON (pg.accountId);
|
|
1248
|
+
|
|
1249
|
+
// PageView/Click/ScrollMilestone/Recommendation: no uniqueness, just
|
|
1250
|
+
// accountId index. ScrollMilestone is a roll-up (one per PageView,
|
|
1251
|
+
// updated in place) so a uniqueness constraint on (sessionId, pageViewId)
|
|
1252
|
+
// would also work — left as index until a write pattern needs it.
|
|
1253
|
+
CREATE INDEX pageview_account IF NOT EXISTS
|
|
1254
|
+
FOR (pv:PageView) ON (pv.accountId);
|
|
1255
|
+
|
|
1256
|
+
CREATE INDEX pageview_occurred_at IF NOT EXISTS
|
|
1257
|
+
FOR (pv:PageView) ON (pv.occurredAt);
|
|
1258
|
+
|
|
1259
|
+
CREATE INDEX click_account IF NOT EXISTS
|
|
1260
|
+
FOR (cl:Click) ON (cl.accountId);
|
|
1261
|
+
|
|
1262
|
+
CREATE INDEX click_occurred_at IF NOT EXISTS
|
|
1263
|
+
FOR (cl:Click) ON (cl.occurredAt);
|
|
1264
|
+
|
|
1265
|
+
CREATE INDEX scroll_milestone_account IF NOT EXISTS
|
|
1266
|
+
FOR (sm:ScrollMilestone) ON (sm.accountId);
|
|
1267
|
+
|
|
1268
|
+
CREATE INDEX recommendation_account IF NOT EXISTS
|
|
1269
|
+
FOR (rec:Recommendation) ON (rec.accountId);
|
|
1270
|
+
|
|
1271
|
+
CREATE INDEX recommendation_session_key IF NOT EXISTS
|
|
1272
|
+
FOR (rec:Recommendation) ON (rec.sessionKey);
|
|
1273
|
+
|
|
1274
|
+
// ----------------------------------------------------------
|
|
1275
|
+
// Idea (Task 352) — original-thinking candidates extracted by
|
|
1276
|
+
// the signal-detector specialist from admin-side conversations.
|
|
1277
|
+
// Written via memory-write(labels:["Idea"], ...) with one edge
|
|
1278
|
+
// (:Conversation)-[:HAS_IDEA]->(:Idea). Forward-only write surface:
|
|
1279
|
+
// no historical backfill, no dedup, no clustering — let the brain
|
|
1280
|
+
// accumulate first. Declared here so memory-write's label validator
|
|
1281
|
+
// (db.labels() ∪ schema.cypher) registers the label on a fresh
|
|
1282
|
+
// deploy where no :Idea node has yet landed; without this, the
|
|
1283
|
+
// first write is rejected as "unknown label" and the specialist's
|
|
1284
|
+
// LOUD-FAIL surfaces the rejection without anything landing.
|
|
1285
|
+
// ----------------------------------------------------------
|
|
1286
|
+
|
|
1287
|
+
CREATE INDEX idea_account IF NOT EXISTS
|
|
1288
|
+
FOR (i:Idea) ON (i.accountId);
|
|
1289
|
+
|
|
1290
|
+
CREATE VECTOR INDEX idea_embedding IF NOT EXISTS
|
|
1291
|
+
FOR (i:Idea) ON (i.embedding)
|
|
1292
|
+
OPTIONS {
|
|
1293
|
+
indexConfig: {
|
|
1294
|
+
`vector.dimensions`: 768,
|
|
1295
|
+
`vector.similarity_function`: 'cosine'
|
|
1296
|
+
}
|
|
1297
|
+
};
|
|
@@ -77,6 +77,10 @@
|
|
|
77
77
|
"resolved": "plugins/admin/mcp",
|
|
78
78
|
"link": true
|
|
79
79
|
},
|
|
80
|
+
"node_modules/@maxy/aeo": {
|
|
81
|
+
"resolved": "plugins/aeo/mcp",
|
|
82
|
+
"link": true
|
|
83
|
+
},
|
|
80
84
|
"node_modules/@maxy/claude-session-manager": {
|
|
81
85
|
"resolved": "services/claude-session-manager",
|
|
82
86
|
"link": true
|
|
@@ -113,10 +117,6 @@
|
|
|
113
117
|
"resolved": "plugins/scheduling/mcp",
|
|
114
118
|
"link": true
|
|
115
119
|
},
|
|
116
|
-
"node_modules/@maxy/waitlist": {
|
|
117
|
-
"resolved": "plugins/waitlist/mcp",
|
|
118
|
-
"link": true
|
|
119
|
-
},
|
|
120
120
|
"node_modules/@maxy/whatsapp": {
|
|
121
121
|
"resolved": "plugins/whatsapp/mcp",
|
|
122
122
|
"link": true
|
|
@@ -216,9 +216,9 @@
|
|
|
216
216
|
}
|
|
217
217
|
},
|
|
218
218
|
"node_modules/@oxc-project/types": {
|
|
219
|
-
"version": "0.
|
|
220
|
-
"resolved": "https://registry.npmjs.org/@oxc-project/types/-/types-0.
|
|
221
|
-
"integrity": "sha512-
|
|
219
|
+
"version": "0.132.0",
|
|
220
|
+
"resolved": "https://registry.npmjs.org/@oxc-project/types/-/types-0.132.0.tgz",
|
|
221
|
+
"integrity": "sha512-FESMOxil5Se014ui/Eq8fT5uHJo6nIRwH0PfJrZJXs6Gek3ZVFOrpUv3YIZT20m+extU98Hg1Ym72U58rlsxUQ==",
|
|
222
222
|
"dev": true,
|
|
223
223
|
"license": "MIT",
|
|
224
224
|
"funding": {
|
|
@@ -232,9 +232,9 @@
|
|
|
232
232
|
"license": "MIT"
|
|
233
233
|
},
|
|
234
234
|
"node_modules/@rolldown/binding-android-arm64": {
|
|
235
|
-
"version": "1.0.
|
|
236
|
-
"resolved": "https://registry.npmjs.org/@rolldown/binding-android-arm64/-/binding-android-arm64-1.0.
|
|
237
|
-
"integrity": "sha512-
|
|
235
|
+
"version": "1.0.2",
|
|
236
|
+
"resolved": "https://registry.npmjs.org/@rolldown/binding-android-arm64/-/binding-android-arm64-1.0.2.tgz",
|
|
237
|
+
"integrity": "sha512-ZS4D1JPGn/MYQN/SYDWftIE/nVsM8j/AFOYEzAoOE2O3NktQOZru+/vYXGbR/qtdLdIfGCP0lcoJiYVzsEz+iQ==",
|
|
238
238
|
"cpu": [
|
|
239
239
|
"arm64"
|
|
240
240
|
],
|
|
@@ -249,9 +249,9 @@
|
|
|
249
249
|
}
|
|
250
250
|
},
|
|
251
251
|
"node_modules/@rolldown/binding-darwin-arm64": {
|
|
252
|
-
"version": "1.0.
|
|
253
|
-
"resolved": "https://registry.npmjs.org/@rolldown/binding-darwin-arm64/-/binding-darwin-arm64-1.0.
|
|
254
|
-
"integrity": "sha512-
|
|
252
|
+
"version": "1.0.2",
|
|
253
|
+
"resolved": "https://registry.npmjs.org/@rolldown/binding-darwin-arm64/-/binding-darwin-arm64-1.0.2.tgz",
|
|
254
|
+
"integrity": "sha512-vdFA9+C/rekyGce7WqHs/xoT0ioZEWaOFyZLIV1mEeNFaFDUQrPIo8Vs2GvJ6eetb3rzDUtUBgzto3ExpXJB3w==",
|
|
255
255
|
"cpu": [
|
|
256
256
|
"arm64"
|
|
257
257
|
],
|
|
@@ -266,9 +266,9 @@
|
|
|
266
266
|
}
|
|
267
267
|
},
|
|
268
268
|
"node_modules/@rolldown/binding-darwin-x64": {
|
|
269
|
-
"version": "1.0.
|
|
270
|
-
"resolved": "https://registry.npmjs.org/@rolldown/binding-darwin-x64/-/binding-darwin-x64-1.0.
|
|
271
|
-
"integrity": "sha512-
|
|
269
|
+
"version": "1.0.2",
|
|
270
|
+
"resolved": "https://registry.npmjs.org/@rolldown/binding-darwin-x64/-/binding-darwin-x64-1.0.2.tgz",
|
|
271
|
+
"integrity": "sha512-BewSOwTHazv77DTYiAZXSqqKZ4KP/KonFisDMVU7PImxoWfB2aepnPhd2E4SWz3zDzYgDNbs6jBmTdgNnF02GA==",
|
|
272
272
|
"cpu": [
|
|
273
273
|
"x64"
|
|
274
274
|
],
|
|
@@ -283,9 +283,9 @@
|
|
|
283
283
|
}
|
|
284
284
|
},
|
|
285
285
|
"node_modules/@rolldown/binding-freebsd-x64": {
|
|
286
|
-
"version": "1.0.
|
|
287
|
-
"resolved": "https://registry.npmjs.org/@rolldown/binding-freebsd-x64/-/binding-freebsd-x64-1.0.
|
|
288
|
-
"integrity": "sha512-
|
|
286
|
+
"version": "1.0.2",
|
|
287
|
+
"resolved": "https://registry.npmjs.org/@rolldown/binding-freebsd-x64/-/binding-freebsd-x64-1.0.2.tgz",
|
|
288
|
+
"integrity": "sha512-m41o7M0YWtUdqk61Tb+jnKb2rN++iRdIASlExkUoKfIAH30DOHCB8fVLzSUpbWHHU8esmEioY62PxzexE8MBuA==",
|
|
289
289
|
"cpu": [
|
|
290
290
|
"x64"
|
|
291
291
|
],
|
|
@@ -300,9 +300,9 @@
|
|
|
300
300
|
}
|
|
301
301
|
},
|
|
302
302
|
"node_modules/@rolldown/binding-linux-arm-gnueabihf": {
|
|
303
|
-
"version": "1.0.
|
|
304
|
-
"resolved": "https://registry.npmjs.org/@rolldown/binding-linux-arm-gnueabihf/-/binding-linux-arm-gnueabihf-1.0.
|
|
305
|
-
"integrity": "sha512-
|
|
303
|
+
"version": "1.0.2",
|
|
304
|
+
"resolved": "https://registry.npmjs.org/@rolldown/binding-linux-arm-gnueabihf/-/binding-linux-arm-gnueabihf-1.0.2.tgz",
|
|
305
|
+
"integrity": "sha512-jcojB9H7W/jS29pMKWAK1N+fU99vXodHDTatS3b3y/XSOCiHo0kkA74pL3jJmkoQtYpOCxDvaKs1fo2Ij/1X5w==",
|
|
306
306
|
"cpu": [
|
|
307
307
|
"arm"
|
|
308
308
|
],
|
|
@@ -317,9 +317,9 @@
|
|
|
317
317
|
}
|
|
318
318
|
},
|
|
319
319
|
"node_modules/@rolldown/binding-linux-arm64-gnu": {
|
|
320
|
-
"version": "1.0.
|
|
321
|
-
"resolved": "https://registry.npmjs.org/@rolldown/binding-linux-arm64-gnu/-/binding-linux-arm64-gnu-1.0.
|
|
322
|
-
"integrity": "sha512-
|
|
320
|
+
"version": "1.0.2",
|
|
321
|
+
"resolved": "https://registry.npmjs.org/@rolldown/binding-linux-arm64-gnu/-/binding-linux-arm64-gnu-1.0.2.tgz",
|
|
322
|
+
"integrity": "sha512-1jn6qDU5iiOgFgygDzKUuKP0maTi0/f1+sBLgvij/76C77Nm3ts6ufz9Bjg5q5dduxiUIxtq86JIoBvo1xQ4Ig==",
|
|
323
323
|
"cpu": [
|
|
324
324
|
"arm64"
|
|
325
325
|
],
|
|
@@ -334,9 +334,9 @@
|
|
|
334
334
|
}
|
|
335
335
|
},
|
|
336
336
|
"node_modules/@rolldown/binding-linux-arm64-musl": {
|
|
337
|
-
"version": "1.0.
|
|
338
|
-
"resolved": "https://registry.npmjs.org/@rolldown/binding-linux-arm64-musl/-/binding-linux-arm64-musl-1.0.
|
|
339
|
-
"integrity": "sha512-
|
|
337
|
+
"version": "1.0.2",
|
|
338
|
+
"resolved": "https://registry.npmjs.org/@rolldown/binding-linux-arm64-musl/-/binding-linux-arm64-musl-1.0.2.tgz",
|
|
339
|
+
"integrity": "sha512-QVLO/czFMdoMFSqlX3bcswcJNm/23r+qoa/jgtmFc/qEp6/jXmIkDjF/XIo8dPfGaiwy1xfQn8o77L79GeXFgw==",
|
|
340
340
|
"cpu": [
|
|
341
341
|
"arm64"
|
|
342
342
|
],
|
|
@@ -351,9 +351,9 @@
|
|
|
351
351
|
}
|
|
352
352
|
},
|
|
353
353
|
"node_modules/@rolldown/binding-linux-ppc64-gnu": {
|
|
354
|
-
"version": "1.0.
|
|
355
|
-
"resolved": "https://registry.npmjs.org/@rolldown/binding-linux-ppc64-gnu/-/binding-linux-ppc64-gnu-1.0.
|
|
356
|
-
"integrity": "sha512-
|
|
354
|
+
"version": "1.0.2",
|
|
355
|
+
"resolved": "https://registry.npmjs.org/@rolldown/binding-linux-ppc64-gnu/-/binding-linux-ppc64-gnu-1.0.2.tgz",
|
|
356
|
+
"integrity": "sha512-hgO5Abm0w5UL6FEa2iFnZqo2KlK7TQ5QhV5x09hujBf7t5KzHQ1VmfPuTpqRy/rNlSxua3eWH374xxiVrP+lcA==",
|
|
357
357
|
"cpu": [
|
|
358
358
|
"ppc64"
|
|
359
359
|
],
|
|
@@ -368,9 +368,9 @@
|
|
|
368
368
|
}
|
|
369
369
|
},
|
|
370
370
|
"node_modules/@rolldown/binding-linux-s390x-gnu": {
|
|
371
|
-
"version": "1.0.
|
|
372
|
-
"resolved": "https://registry.npmjs.org/@rolldown/binding-linux-s390x-gnu/-/binding-linux-s390x-gnu-1.0.
|
|
373
|
-
"integrity": "sha512-
|
|
371
|
+
"version": "1.0.2",
|
|
372
|
+
"resolved": "https://registry.npmjs.org/@rolldown/binding-linux-s390x-gnu/-/binding-linux-s390x-gnu-1.0.2.tgz",
|
|
373
|
+
"integrity": "sha512-fy8rXxuYEu602abC8MUNaPjYLIFzReOaEIEMKMUa0rFEUxNpVXhs15KSSQ4qlqSaM7B6rcj9rDZgADh/IGDzLQ==",
|
|
374
374
|
"cpu": [
|
|
375
375
|
"s390x"
|
|
376
376
|
],
|
|
@@ -385,9 +385,9 @@
|
|
|
385
385
|
}
|
|
386
386
|
},
|
|
387
387
|
"node_modules/@rolldown/binding-linux-x64-gnu": {
|
|
388
|
-
"version": "1.0.
|
|
389
|
-
"resolved": "https://registry.npmjs.org/@rolldown/binding-linux-x64-gnu/-/binding-linux-x64-gnu-1.0.
|
|
390
|
-
"integrity": "sha512-
|
|
388
|
+
"version": "1.0.2",
|
|
389
|
+
"resolved": "https://registry.npmjs.org/@rolldown/binding-linux-x64-gnu/-/binding-linux-x64-gnu-1.0.2.tgz",
|
|
390
|
+
"integrity": "sha512-0+bOkiQ779+r1WpoHOWHqncvyySci0vKph+myNDYb+im6meJAzHQXay6oEgnkHuUGouM1LKTZwqKpBow6Kj7CQ==",
|
|
391
391
|
"cpu": [
|
|
392
392
|
"x64"
|
|
393
393
|
],
|
|
@@ -402,9 +402,9 @@
|
|
|
402
402
|
}
|
|
403
403
|
},
|
|
404
404
|
"node_modules/@rolldown/binding-linux-x64-musl": {
|
|
405
|
-
"version": "1.0.
|
|
406
|
-
"resolved": "https://registry.npmjs.org/@rolldown/binding-linux-x64-musl/-/binding-linux-x64-musl-1.0.
|
|
407
|
-
"integrity": "sha512-
|
|
405
|
+
"version": "1.0.2",
|
|
406
|
+
"resolved": "https://registry.npmjs.org/@rolldown/binding-linux-x64-musl/-/binding-linux-x64-musl-1.0.2.tgz",
|
|
407
|
+
"integrity": "sha512-mjSkrzZK5Qsl0a9d1JgILOiuZOSDTVdKENcSXBoqbzSrspLR/4/IRVDo5wd2GgZjNss/viBFJdeq+j7qH2nypw==",
|
|
408
408
|
"cpu": [
|
|
409
409
|
"x64"
|
|
410
410
|
],
|
|
@@ -419,9 +419,9 @@
|
|
|
419
419
|
}
|
|
420
420
|
},
|
|
421
421
|
"node_modules/@rolldown/binding-openharmony-arm64": {
|
|
422
|
-
"version": "1.0.
|
|
423
|
-
"resolved": "https://registry.npmjs.org/@rolldown/binding-openharmony-arm64/-/binding-openharmony-arm64-1.0.
|
|
424
|
-
"integrity": "sha512
|
|
422
|
+
"version": "1.0.2",
|
|
423
|
+
"resolved": "https://registry.npmjs.org/@rolldown/binding-openharmony-arm64/-/binding-openharmony-arm64-1.0.2.tgz",
|
|
424
|
+
"integrity": "sha512-1v5vHasdfQAZoEHakBV72LIFAC9JjnymsiKxp+GEr/ma3+NJCPSaYK+qavInOovJkgwFrs7GccX2d6IgDA3Z5w==",
|
|
425
425
|
"cpu": [
|
|
426
426
|
"arm64"
|
|
427
427
|
],
|
|
@@ -436,9 +436,9 @@
|
|
|
436
436
|
}
|
|
437
437
|
},
|
|
438
438
|
"node_modules/@rolldown/binding-wasm32-wasi": {
|
|
439
|
-
"version": "1.0.
|
|
440
|
-
"resolved": "https://registry.npmjs.org/@rolldown/binding-wasm32-wasi/-/binding-wasm32-wasi-1.0.
|
|
441
|
-
"integrity": "sha512
|
|
439
|
+
"version": "1.0.2",
|
|
440
|
+
"resolved": "https://registry.npmjs.org/@rolldown/binding-wasm32-wasi/-/binding-wasm32-wasi-1.0.2.tgz",
|
|
441
|
+
"integrity": "sha512-mb1VobWn6NheziTk5/WEaR6AKVbrwT5sOi6C7zk3gy/pD1qtJfU1j4PgTo2NJnOtbL9Dl3Aeei8w9jJ7qC2jZQ==",
|
|
442
442
|
"cpu": [
|
|
443
443
|
"wasm32"
|
|
444
444
|
],
|
|
@@ -455,9 +455,9 @@
|
|
|
455
455
|
}
|
|
456
456
|
},
|
|
457
457
|
"node_modules/@rolldown/binding-win32-arm64-msvc": {
|
|
458
|
-
"version": "1.0.
|
|
459
|
-
"resolved": "https://registry.npmjs.org/@rolldown/binding-win32-arm64-msvc/-/binding-win32-arm64-msvc-1.0.
|
|
460
|
-
"integrity": "sha512-
|
|
458
|
+
"version": "1.0.2",
|
|
459
|
+
"resolved": "https://registry.npmjs.org/@rolldown/binding-win32-arm64-msvc/-/binding-win32-arm64-msvc-1.0.2.tgz",
|
|
460
|
+
"integrity": "sha512-SqKonF56vA/L2yHwHYcEp2P34URpOZ7d1fS635cTkpDnUtEGdUbhI6NzsPdqeSWvAAeGDrxjWjNmibDIdFf9/A==",
|
|
461
461
|
"cpu": [
|
|
462
462
|
"arm64"
|
|
463
463
|
],
|
|
@@ -472,9 +472,9 @@
|
|
|
472
472
|
}
|
|
473
473
|
},
|
|
474
474
|
"node_modules/@rolldown/binding-win32-x64-msvc": {
|
|
475
|
-
"version": "1.0.
|
|
476
|
-
"resolved": "https://registry.npmjs.org/@rolldown/binding-win32-x64-msvc/-/binding-win32-x64-msvc-1.0.
|
|
477
|
-
"integrity": "sha512-
|
|
475
|
+
"version": "1.0.2",
|
|
476
|
+
"resolved": "https://registry.npmjs.org/@rolldown/binding-win32-x64-msvc/-/binding-win32-x64-msvc-1.0.2.tgz",
|
|
477
|
+
"integrity": "sha512-v7qRI7gXLRINcOGXt+7YmAZ6iFuyZVMIoXAxhd8oP+DR9dLfL9GfNIx7PLMxmhZdvq8waUJBQiWN9EKNy+TRBQ==",
|
|
478
478
|
"cpu": [
|
|
479
479
|
"x64"
|
|
480
480
|
],
|
|
@@ -569,16 +569,16 @@
|
|
|
569
569
|
}
|
|
570
570
|
},
|
|
571
571
|
"node_modules/@vitest/expect": {
|
|
572
|
-
"version": "4.1.
|
|
573
|
-
"resolved": "https://registry.npmjs.org/@vitest/expect/-/expect-4.1.
|
|
574
|
-
"integrity": "sha512-
|
|
572
|
+
"version": "4.1.7",
|
|
573
|
+
"resolved": "https://registry.npmjs.org/@vitest/expect/-/expect-4.1.7.tgz",
|
|
574
|
+
"integrity": "sha512-1R+tw0ortHEbZDGMymm+pN7/AFQ/RkFFdtd7EN+VBpynKmLbP8A3rpEXdshBJ7+8hQ9zBJh/i1s0yKNtxAnU7w==",
|
|
575
575
|
"dev": true,
|
|
576
576
|
"license": "MIT",
|
|
577
577
|
"dependencies": {
|
|
578
578
|
"@standard-schema/spec": "^1.1.0",
|
|
579
579
|
"@types/chai": "^5.2.2",
|
|
580
|
-
"@vitest/spy": "4.1.
|
|
581
|
-
"@vitest/utils": "4.1.
|
|
580
|
+
"@vitest/spy": "4.1.7",
|
|
581
|
+
"@vitest/utils": "4.1.7",
|
|
582
582
|
"chai": "^6.2.2",
|
|
583
583
|
"tinyrainbow": "^3.1.0"
|
|
584
584
|
},
|
|
@@ -587,13 +587,13 @@
|
|
|
587
587
|
}
|
|
588
588
|
},
|
|
589
589
|
"node_modules/@vitest/mocker": {
|
|
590
|
-
"version": "4.1.
|
|
591
|
-
"resolved": "https://registry.npmjs.org/@vitest/mocker/-/mocker-4.1.
|
|
592
|
-
"integrity": "sha512-
|
|
590
|
+
"version": "4.1.7",
|
|
591
|
+
"resolved": "https://registry.npmjs.org/@vitest/mocker/-/mocker-4.1.7.tgz",
|
|
592
|
+
"integrity": "sha512-vY7nuamKgfvpA1Koa3oYIw/k7D6kZnpGyNMZW8loow2bsBYla1TFdqTaXncWdRn4pgwNs+90RhnXhJScDwQeJA==",
|
|
593
593
|
"dev": true,
|
|
594
594
|
"license": "MIT",
|
|
595
595
|
"dependencies": {
|
|
596
|
-
"@vitest/spy": "4.1.
|
|
596
|
+
"@vitest/spy": "4.1.7",
|
|
597
597
|
"estree-walker": "^3.0.3",
|
|
598
598
|
"magic-string": "^0.30.21"
|
|
599
599
|
},
|
|
@@ -614,9 +614,9 @@
|
|
|
614
614
|
}
|
|
615
615
|
},
|
|
616
616
|
"node_modules/@vitest/pretty-format": {
|
|
617
|
-
"version": "4.1.
|
|
618
|
-
"resolved": "https://registry.npmjs.org/@vitest/pretty-format/-/pretty-format-4.1.
|
|
619
|
-
"integrity": "sha512-
|
|
617
|
+
"version": "4.1.7",
|
|
618
|
+
"resolved": "https://registry.npmjs.org/@vitest/pretty-format/-/pretty-format-4.1.7.tgz",
|
|
619
|
+
"integrity": "sha512-umgCarTOYQWIaDMvGDRZij+6b9oVeLIyJzfN+AS88e0ZOU3QTgNNSTtjQOpcvWr3np1N0j4WgZj+sb3oYBDscw==",
|
|
620
620
|
"dev": true,
|
|
621
621
|
"license": "MIT",
|
|
622
622
|
"dependencies": {
|
|
@@ -627,13 +627,13 @@
|
|
|
627
627
|
}
|
|
628
628
|
},
|
|
629
629
|
"node_modules/@vitest/runner": {
|
|
630
|
-
"version": "4.1.
|
|
631
|
-
"resolved": "https://registry.npmjs.org/@vitest/runner/-/runner-4.1.
|
|
632
|
-
"integrity": "sha512-
|
|
630
|
+
"version": "4.1.7",
|
|
631
|
+
"resolved": "https://registry.npmjs.org/@vitest/runner/-/runner-4.1.7.tgz",
|
|
632
|
+
"integrity": "sha512-BapjmAQ2aI78WdMEfeUWivnfVzB+VPGwWRQcJE0OUq7qEeEcBsCSf+0T5iREBNE5nBb4wA5Ya0W6IA+sghdEFw==",
|
|
633
633
|
"dev": true,
|
|
634
634
|
"license": "MIT",
|
|
635
635
|
"dependencies": {
|
|
636
|
-
"@vitest/utils": "4.1.
|
|
636
|
+
"@vitest/utils": "4.1.7",
|
|
637
637
|
"pathe": "^2.0.3"
|
|
638
638
|
},
|
|
639
639
|
"funding": {
|
|
@@ -641,14 +641,14 @@
|
|
|
641
641
|
}
|
|
642
642
|
},
|
|
643
643
|
"node_modules/@vitest/snapshot": {
|
|
644
|
-
"version": "4.1.
|
|
645
|
-
"resolved": "https://registry.npmjs.org/@vitest/snapshot/-/snapshot-4.1.
|
|
646
|
-
"integrity": "sha512-
|
|
644
|
+
"version": "4.1.7",
|
|
645
|
+
"resolved": "https://registry.npmjs.org/@vitest/snapshot/-/snapshot-4.1.7.tgz",
|
|
646
|
+
"integrity": "sha512-ZacLzja+TmJeZ1h14xW2FB/WpeimUD3haBXQPyJqxvo8jQTmfeA8zv58mtjN2C7EHXZDYVcVYdYmAxjkWVvKCw==",
|
|
647
647
|
"dev": true,
|
|
648
648
|
"license": "MIT",
|
|
649
649
|
"dependencies": {
|
|
650
|
-
"@vitest/pretty-format": "4.1.
|
|
651
|
-
"@vitest/utils": "4.1.
|
|
650
|
+
"@vitest/pretty-format": "4.1.7",
|
|
651
|
+
"@vitest/utils": "4.1.7",
|
|
652
652
|
"magic-string": "^0.30.21",
|
|
653
653
|
"pathe": "^2.0.3"
|
|
654
654
|
},
|
|
@@ -657,9 +657,9 @@
|
|
|
657
657
|
}
|
|
658
658
|
},
|
|
659
659
|
"node_modules/@vitest/spy": {
|
|
660
|
-
"version": "4.1.
|
|
661
|
-
"resolved": "https://registry.npmjs.org/@vitest/spy/-/spy-4.1.
|
|
662
|
-
"integrity": "sha512-
|
|
660
|
+
"version": "4.1.7",
|
|
661
|
+
"resolved": "https://registry.npmjs.org/@vitest/spy/-/spy-4.1.7.tgz",
|
|
662
|
+
"integrity": "sha512-kbkI5LMWakyuTIvs6fUJ5qdIVb1XVKsYJAT4OJ938cHMROYMSfmoQdZy0aaAnjbbc8F61vkoTqz/Az+/HiIu5Q==",
|
|
663
663
|
"dev": true,
|
|
664
664
|
"license": "MIT",
|
|
665
665
|
"funding": {
|
|
@@ -667,13 +667,13 @@
|
|
|
667
667
|
}
|
|
668
668
|
},
|
|
669
669
|
"node_modules/@vitest/utils": {
|
|
670
|
-
"version": "4.1.
|
|
671
|
-
"resolved": "https://registry.npmjs.org/@vitest/utils/-/utils-4.1.
|
|
672
|
-
"integrity": "sha512-
|
|
670
|
+
"version": "4.1.7",
|
|
671
|
+
"resolved": "https://registry.npmjs.org/@vitest/utils/-/utils-4.1.7.tgz",
|
|
672
|
+
"integrity": "sha512-T532WBu791cBxJlCl6SO+J14l81DQx6uQHm1bQbmCDY7nqlEIgkza/UFnSBNaUtSf41unldDFjdOBYEQC4b5Hw==",
|
|
673
673
|
"dev": true,
|
|
674
674
|
"license": "MIT",
|
|
675
675
|
"dependencies": {
|
|
676
|
-
"@vitest/pretty-format": "4.1.
|
|
676
|
+
"@vitest/pretty-format": "4.1.7",
|
|
677
677
|
"convert-source-map": "^2.0.0",
|
|
678
678
|
"tinyrainbow": "^3.1.0"
|
|
679
679
|
},
|
|
@@ -2337,9 +2337,9 @@
|
|
|
2337
2337
|
}
|
|
2338
2338
|
},
|
|
2339
2339
|
"node_modules/postcss": {
|
|
2340
|
-
"version": "8.5.
|
|
2341
|
-
"resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.
|
|
2342
|
-
"integrity": "sha512-
|
|
2340
|
+
"version": "8.5.15",
|
|
2341
|
+
"resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.15.tgz",
|
|
2342
|
+
"integrity": "sha512-FfR8sjd4em2T6fb3I2MwAJU7HWVMr9zba+enmQeeWFfCbm+UOC/0X4DS8XtpUTMwWMGbjKYP7xjfNekzyGmB3A==",
|
|
2343
2343
|
"dev": true,
|
|
2344
2344
|
"funding": [
|
|
2345
2345
|
{
|
|
@@ -2357,7 +2357,7 @@
|
|
|
2357
2357
|
],
|
|
2358
2358
|
"license": "MIT",
|
|
2359
2359
|
"dependencies": {
|
|
2360
|
-
"nanoid": "^3.3.
|
|
2360
|
+
"nanoid": "^3.3.12",
|
|
2361
2361
|
"picocolors": "^1.1.1",
|
|
2362
2362
|
"source-map-js": "^1.2.1"
|
|
2363
2363
|
},
|
|
@@ -2551,13 +2551,13 @@
|
|
|
2551
2551
|
"license": "ISC"
|
|
2552
2552
|
},
|
|
2553
2553
|
"node_modules/rolldown": {
|
|
2554
|
-
"version": "1.0.
|
|
2555
|
-
"resolved": "https://registry.npmjs.org/rolldown/-/rolldown-1.0.
|
|
2556
|
-
"integrity": "sha512-
|
|
2554
|
+
"version": "1.0.2",
|
|
2555
|
+
"resolved": "https://registry.npmjs.org/rolldown/-/rolldown-1.0.2.tgz",
|
|
2556
|
+
"integrity": "sha512-oZx5zVDtVB44AW3eaifgDml1gWRDZGvjcfdxonE4swNPG98PrrXjaO/KrnUjzlMnztCCRVlUueA1kCXhARGk6g==",
|
|
2557
2557
|
"dev": true,
|
|
2558
2558
|
"license": "MIT",
|
|
2559
2559
|
"dependencies": {
|
|
2560
|
-
"@oxc-project/types": "=0.
|
|
2560
|
+
"@oxc-project/types": "=0.132.0",
|
|
2561
2561
|
"@rolldown/pluginutils": "^1.0.0"
|
|
2562
2562
|
},
|
|
2563
2563
|
"bin": {
|
|
@@ -2567,21 +2567,21 @@
|
|
|
2567
2567
|
"node": "^20.19.0 || >=22.12.0"
|
|
2568
2568
|
},
|
|
2569
2569
|
"optionalDependencies": {
|
|
2570
|
-
"@rolldown/binding-android-arm64": "1.0.
|
|
2571
|
-
"@rolldown/binding-darwin-arm64": "1.0.
|
|
2572
|
-
"@rolldown/binding-darwin-x64": "1.0.
|
|
2573
|
-
"@rolldown/binding-freebsd-x64": "1.0.
|
|
2574
|
-
"@rolldown/binding-linux-arm-gnueabihf": "1.0.
|
|
2575
|
-
"@rolldown/binding-linux-arm64-gnu": "1.0.
|
|
2576
|
-
"@rolldown/binding-linux-arm64-musl": "1.0.
|
|
2577
|
-
"@rolldown/binding-linux-ppc64-gnu": "1.0.
|
|
2578
|
-
"@rolldown/binding-linux-s390x-gnu": "1.0.
|
|
2579
|
-
"@rolldown/binding-linux-x64-gnu": "1.0.
|
|
2580
|
-
"@rolldown/binding-linux-x64-musl": "1.0.
|
|
2581
|
-
"@rolldown/binding-openharmony-arm64": "1.0.
|
|
2582
|
-
"@rolldown/binding-wasm32-wasi": "1.0.
|
|
2583
|
-
"@rolldown/binding-win32-arm64-msvc": "1.0.
|
|
2584
|
-
"@rolldown/binding-win32-x64-msvc": "1.0.
|
|
2570
|
+
"@rolldown/binding-android-arm64": "1.0.2",
|
|
2571
|
+
"@rolldown/binding-darwin-arm64": "1.0.2",
|
|
2572
|
+
"@rolldown/binding-darwin-x64": "1.0.2",
|
|
2573
|
+
"@rolldown/binding-freebsd-x64": "1.0.2",
|
|
2574
|
+
"@rolldown/binding-linux-arm-gnueabihf": "1.0.2",
|
|
2575
|
+
"@rolldown/binding-linux-arm64-gnu": "1.0.2",
|
|
2576
|
+
"@rolldown/binding-linux-arm64-musl": "1.0.2",
|
|
2577
|
+
"@rolldown/binding-linux-ppc64-gnu": "1.0.2",
|
|
2578
|
+
"@rolldown/binding-linux-s390x-gnu": "1.0.2",
|
|
2579
|
+
"@rolldown/binding-linux-x64-gnu": "1.0.2",
|
|
2580
|
+
"@rolldown/binding-linux-x64-musl": "1.0.2",
|
|
2581
|
+
"@rolldown/binding-openharmony-arm64": "1.0.2",
|
|
2582
|
+
"@rolldown/binding-wasm32-wasi": "1.0.2",
|
|
2583
|
+
"@rolldown/binding-win32-arm64-msvc": "1.0.2",
|
|
2584
|
+
"@rolldown/binding-win32-x64-msvc": "1.0.2"
|
|
2585
2585
|
}
|
|
2586
2586
|
},
|
|
2587
2587
|
"node_modules/router": {
|
|
@@ -3059,16 +3059,16 @@
|
|
|
3059
3059
|
}
|
|
3060
3060
|
},
|
|
3061
3061
|
"node_modules/vite": {
|
|
3062
|
-
"version": "8.0.
|
|
3063
|
-
"resolved": "https://registry.npmjs.org/vite/-/vite-8.0.
|
|
3064
|
-
"integrity": "sha512-
|
|
3062
|
+
"version": "8.0.14",
|
|
3063
|
+
"resolved": "https://registry.npmjs.org/vite/-/vite-8.0.14.tgz",
|
|
3064
|
+
"integrity": "sha512-s4BJJ+5y1pYL6Otw51FHhVJQhPnuRinKig64g/1+EUNaJsd3gCKdD31IPFvswUgW9/60QT9oFHbZHbQK5imcxw==",
|
|
3065
3065
|
"dev": true,
|
|
3066
3066
|
"license": "MIT",
|
|
3067
3067
|
"dependencies": {
|
|
3068
3068
|
"lightningcss": "^1.32.0",
|
|
3069
3069
|
"picomatch": "^4.0.4",
|
|
3070
|
-
"postcss": "^8.5.
|
|
3071
|
-
"rolldown": "1.0.
|
|
3070
|
+
"postcss": "^8.5.15",
|
|
3071
|
+
"rolldown": "1.0.2",
|
|
3072
3072
|
"tinyglobby": "^0.2.16"
|
|
3073
3073
|
},
|
|
3074
3074
|
"bin": {
|
|
@@ -3137,19 +3137,19 @@
|
|
|
3137
3137
|
}
|
|
3138
3138
|
},
|
|
3139
3139
|
"node_modules/vitest": {
|
|
3140
|
-
"version": "4.1.
|
|
3141
|
-
"resolved": "https://registry.npmjs.org/vitest/-/vitest-4.1.
|
|
3142
|
-
"integrity": "sha512-
|
|
3140
|
+
"version": "4.1.7",
|
|
3141
|
+
"resolved": "https://registry.npmjs.org/vitest/-/vitest-4.1.7.tgz",
|
|
3142
|
+
"integrity": "sha512-flYyaFd2CgoCoU+0UKt3pxksgC+S02iTDN0n3LtqaMeXsI9SBcdNujc2k0DeFLzUn/0k538yNjOSdwgCqcrwJA==",
|
|
3143
3143
|
"dev": true,
|
|
3144
3144
|
"license": "MIT",
|
|
3145
3145
|
"dependencies": {
|
|
3146
|
-
"@vitest/expect": "4.1.
|
|
3147
|
-
"@vitest/mocker": "4.1.
|
|
3148
|
-
"@vitest/pretty-format": "4.1.
|
|
3149
|
-
"@vitest/runner": "4.1.
|
|
3150
|
-
"@vitest/snapshot": "4.1.
|
|
3151
|
-
"@vitest/spy": "4.1.
|
|
3152
|
-
"@vitest/utils": "4.1.
|
|
3146
|
+
"@vitest/expect": "4.1.7",
|
|
3147
|
+
"@vitest/mocker": "4.1.7",
|
|
3148
|
+
"@vitest/pretty-format": "4.1.7",
|
|
3149
|
+
"@vitest/runner": "4.1.7",
|
|
3150
|
+
"@vitest/snapshot": "4.1.7",
|
|
3151
|
+
"@vitest/spy": "4.1.7",
|
|
3152
|
+
"@vitest/utils": "4.1.7",
|
|
3153
3153
|
"es-module-lexer": "^2.0.0",
|
|
3154
3154
|
"expect-type": "^1.3.0",
|
|
3155
3155
|
"magic-string": "^0.30.21",
|
|
@@ -3177,12 +3177,12 @@
|
|
|
3177
3177
|
"@edge-runtime/vm": "*",
|
|
3178
3178
|
"@opentelemetry/api": "^1.9.0",
|
|
3179
3179
|
"@types/node": "^20.0.0 || ^22.0.0 || >=24.0.0",
|
|
3180
|
-
"@vitest/browser-playwright": "4.1.
|
|
3181
|
-
"@vitest/browser-preview": "4.1.
|
|
3182
|
-
"@vitest/browser-webdriverio": "4.1.
|
|
3183
|
-
"@vitest/coverage-istanbul": "4.1.
|
|
3184
|
-
"@vitest/coverage-v8": "4.1.
|
|
3185
|
-
"@vitest/ui": "4.1.
|
|
3180
|
+
"@vitest/browser-playwright": "4.1.7",
|
|
3181
|
+
"@vitest/browser-preview": "4.1.7",
|
|
3182
|
+
"@vitest/browser-webdriverio": "4.1.7",
|
|
3183
|
+
"@vitest/coverage-istanbul": "4.1.7",
|
|
3184
|
+
"@vitest/coverage-v8": "4.1.7",
|
|
3185
|
+
"@vitest/ui": "4.1.7",
|
|
3186
3186
|
"happy-dom": "*",
|
|
3187
3187
|
"jsdom": "*",
|
|
3188
3188
|
"vite": "^6.0.0 || ^7.0.0 || ^8.0.0"
|
|
@@ -3358,6 +3358,20 @@
|
|
|
3358
3358
|
"vitest": "^4.1.2"
|
|
3359
3359
|
}
|
|
3360
3360
|
},
|
|
3361
|
+
"plugins/aeo/mcp": {
|
|
3362
|
+
"name": "@maxy/aeo",
|
|
3363
|
+
"version": "0.1.0",
|
|
3364
|
+
"dependencies": {
|
|
3365
|
+
"@modelcontextprotocol/sdk": "^1.12.1",
|
|
3366
|
+
"neo4j-driver": "^5.28.1",
|
|
3367
|
+
"zod": "^3.24.0"
|
|
3368
|
+
},
|
|
3369
|
+
"devDependencies": {
|
|
3370
|
+
"@types/node": "^22.0.0",
|
|
3371
|
+
"typescript": "^5.7.0",
|
|
3372
|
+
"vitest": "^4.1.2"
|
|
3373
|
+
}
|
|
3374
|
+
},
|
|
3361
3375
|
"plugins/cloudflare/mcp": {
|
|
3362
3376
|
"name": "@maxy/cloudflare",
|
|
3363
3377
|
"version": "0.1.0",
|
|
@@ -3480,6 +3494,7 @@
|
|
|
3480
3494
|
"plugins/waitlist/mcp": {
|
|
3481
3495
|
"name": "@maxy/waitlist",
|
|
3482
3496
|
"version": "0.1.0",
|
|
3497
|
+
"extraneous": true,
|
|
3483
3498
|
"dependencies": {
|
|
3484
3499
|
"@modelcontextprotocol/sdk": "^1.12.1",
|
|
3485
3500
|
"cron-parser": "^4.9.0",
|
|
@@ -3501,7 +3516,8 @@
|
|
|
3501
3516
|
},
|
|
3502
3517
|
"devDependencies": {
|
|
3503
3518
|
"@types/node": "^22.0.0",
|
|
3504
|
-
"typescript": "^5.7.0"
|
|
3519
|
+
"typescript": "^5.7.0",
|
|
3520
|
+
"vitest": "^4.1.7"
|
|
3505
3521
|
}
|
|
3506
3522
|
},
|
|
3507
3523
|
"plugins/work/mcp": {
|