@coze-arch/cli 0.0.1-alpha.e9ff73 → 0.0.1-alpha.eaa612
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/lib/__templates__/expo/client/components/Screen.tsx +2 -2
- package/lib/__templates__/expo/client/eslint.config.mjs +4 -0
- package/lib/__templates__/expo/client/scripts/install-missing-deps.js +10 -10
- package/lib/__templates__/expo/eslint-plugins/forbid-emoji/index.js +9 -0
- package/lib/__templates__/expo/eslint-plugins/forbid-emoji/rule.js +112 -0
- package/lib/__templates__/expo/eslint-plugins/forbid-emoji/tech.md +94 -0
- package/lib/__templates__/nextjs/README.md +5 -0
- package/lib/__templates__/nextjs/_gitignore +0 -3
- package/lib/__templates__/nextjs/eslint.config.mjs +5 -0
- package/lib/__templates__/nextjs/next.config.ts +1 -2
- package/lib/__templates__/nextjs/package.json +1 -5
- package/lib/__templates__/nextjs/pnpm-lock.yaml +1012 -12
- package/lib/__templates__/nextjs/scripts/build.sh +2 -2
- package/lib/__templates__/nextjs/scripts/dev.sh +3 -4
- package/lib/__templates__/nextjs/scripts/start.sh +3 -3
- package/lib/__templates__/nextjs/src/app/layout.tsx +1 -1
- package/lib/__templates__/nextjs/{server.ts → src/server.ts} +14 -14
- package/lib/__templates__/nextjs/tsconfig.json +1 -1
- package/lib/__templates__/nuxt-app/README.md +5 -15
- package/lib/__templates__/nuxt-app/app/app.vue +1 -188
- package/lib/__templates__/nuxt-app/app/pages/index.vue +23 -0
- package/lib/__templates__/nuxt-app/assets/css/main.css +24 -0
- package/lib/__templates__/nuxt-app/nuxt.config.ts +63 -3
- package/lib/__templates__/nuxt-app/package.json +7 -0
- package/lib/__templates__/nuxt-app/pnpm-lock.yaml +1610 -53
- package/lib/__templates__/nuxt-app/postcss.config.mjs +8 -0
- package/lib/__templates__/nuxt-app/scripts/dev.sh +2 -3
- package/lib/__templates__/nuxt-app/scripts/start.sh +3 -3
- package/lib/__templates__/nuxt-app/server/api/hello.ts +10 -0
- package/lib/__templates__/nuxt-app/server/middleware/logger.ts +10 -0
- package/lib/__templates__/nuxt-app/server/routes/health.ts +10 -0
- package/lib/__templates__/nuxt-app/tailwind.config.js +13 -0
- package/lib/__templates__/nuxt-app/template.config.js +9 -0
- package/lib/__templates__/templates.json +7 -0
- package/lib/__templates__/vite/README.md +189 -11
- package/lib/__templates__/vite/_gitignore +1 -0
- package/lib/__templates__/vite/eslint.config.mjs +6 -1
- package/lib/__templates__/vite/package.json +15 -3
- package/lib/__templates__/vite/pnpm-lock.yaml +750 -15
- package/lib/__templates__/vite/scripts/build-server.js +70 -0
- package/lib/__templates__/vite/scripts/build.sh +4 -1
- package/lib/__templates__/vite/scripts/dev.sh +4 -4
- package/lib/__templates__/vite/scripts/start.sh +5 -5
- package/lib/__templates__/vite/server/index.ts +57 -0
- package/lib/__templates__/vite/server/routes/index.ts +31 -0
- package/lib/__templates__/vite/server/vite.ts +79 -0
- package/lib/__templates__/vite/tsconfig.json +4 -3
- package/lib/cli.js +89 -100
- package/package.json +4 -1
- package/lib/__templates__/nuxt-app/.nuxt/app.config.mjs +0 -21
- package/lib/__templates__/nuxt-app/.nuxt/components.d.ts +0 -64
- package/lib/__templates__/nuxt-app/.nuxt/imports.d.ts +0 -31
- package/lib/__templates__/nuxt-app/.nuxt/manifest/meta/f97812ec-f25e-427b-b45d-eab58fba39f9.json +0 -1
- package/lib/__templates__/nuxt-app/.nuxt/nuxt.d.ts +0 -19
- package/lib/__templates__/nuxt-app/.nuxt/nuxt.node.d.ts +0 -14
- package/lib/__templates__/nuxt-app/.nuxt/nuxt.shared.d.ts +0 -6
- package/lib/__templates__/nuxt-app/.nuxt/schema/nuxt.schema.d.ts +0 -17
- package/lib/__templates__/nuxt-app/.nuxt/schema/nuxt.schema.json +0 -3
- package/lib/__templates__/nuxt-app/.nuxt/tsconfig.app.json +0 -201
- package/lib/__templates__/nuxt-app/.nuxt/tsconfig.json +0 -203
- package/lib/__templates__/nuxt-app/.nuxt/tsconfig.node.json +0 -110
- package/lib/__templates__/nuxt-app/.nuxt/tsconfig.server.json +0 -140
- package/lib/__templates__/nuxt-app/.nuxt/tsconfig.shared.json +0 -152
- package/lib/__templates__/nuxt-app/.nuxt/types/app.config.d.ts +0 -35
- package/lib/__templates__/nuxt-app/.nuxt/types/build.d.ts +0 -24
- package/lib/__templates__/nuxt-app/.nuxt/types/builder-env.d.ts +0 -1
- package/lib/__templates__/nuxt-app/.nuxt/types/components.d.ts +0 -69
- package/lib/__templates__/nuxt-app/.nuxt/types/imports.d.ts +0 -360
- package/lib/__templates__/nuxt-app/.nuxt/types/middleware.d.ts +0 -11
- package/lib/__templates__/nuxt-app/.nuxt/types/modules.d.ts +0 -79
- package/lib/__templates__/nuxt-app/.nuxt/types/nitro-config.d.ts +0 -14
- package/lib/__templates__/nuxt-app/.nuxt/types/nitro-imports.d.ts +0 -151
- package/lib/__templates__/nuxt-app/.nuxt/types/nitro-layouts.d.ts +0 -17
- package/lib/__templates__/nuxt-app/.nuxt/types/nitro-nuxt.d.ts +0 -64
- package/lib/__templates__/nuxt-app/.nuxt/types/nitro-routes.d.ts +0 -17
- package/lib/__templates__/nuxt-app/.nuxt/types/nitro.d.ts +0 -3
- package/lib/__templates__/nuxt-app/.nuxt/types/plugins.d.ts +0 -30
- package/lib/__templates__/nuxt-app/.nuxt/types/runtime-config.d.ts +0 -32
- package/lib/__templates__/nuxt-app/.nuxt/types/shared-imports.d.ts +0 -10
- package/lib/__templates__/nuxt-app/.nuxt/types/vue-shim.d.ts +0 -0
|
@@ -6,24 +6,55 @@ settings:
|
|
|
6
6
|
|
|
7
7
|
overrides:
|
|
8
8
|
esbuild: ^0.27.2
|
|
9
|
+
is-generator-function: 1.0.10
|
|
9
10
|
|
|
10
11
|
importers:
|
|
11
12
|
|
|
12
13
|
.:
|
|
13
14
|
dependencies:
|
|
15
|
+
'@koa/router':
|
|
16
|
+
specifier: ^12.0.1
|
|
17
|
+
version: 12.0.2
|
|
14
18
|
'@supabase/supabase-js':
|
|
15
19
|
specifier: 2.95.3
|
|
16
20
|
version: 2.95.3
|
|
17
21
|
dotenv:
|
|
18
22
|
specifier: ^17.2.3
|
|
19
23
|
version: 17.2.4
|
|
24
|
+
koa:
|
|
25
|
+
specifier: ^2.15.3
|
|
26
|
+
version: 2.16.4
|
|
27
|
+
koa-bodyparser:
|
|
28
|
+
specifier: ^4.4.1
|
|
29
|
+
version: 4.4.1
|
|
30
|
+
koa-static:
|
|
31
|
+
specifier: ^5.0.0
|
|
32
|
+
version: 5.0.0
|
|
20
33
|
devDependencies:
|
|
34
|
+
'@types/koa':
|
|
35
|
+
specifier: ^2.15.0
|
|
36
|
+
version: 2.15.0
|
|
37
|
+
'@types/koa-bodyparser':
|
|
38
|
+
specifier: ^4.3.12
|
|
39
|
+
version: 4.3.13
|
|
40
|
+
'@types/koa-static':
|
|
41
|
+
specifier: ^4.0.4
|
|
42
|
+
version: 4.0.4
|
|
43
|
+
'@types/koa__router':
|
|
44
|
+
specifier: ^12.0.4
|
|
45
|
+
version: 12.0.5
|
|
46
|
+
'@types/node':
|
|
47
|
+
specifier: ^22.10.5
|
|
48
|
+
version: 22.19.15
|
|
21
49
|
autoprefixer:
|
|
22
50
|
specifier: ^10.4.20
|
|
23
51
|
version: 10.4.23(postcss@8.5.6)
|
|
24
52
|
coze-coding-dev-sdk:
|
|
25
53
|
specifier: ^0.7.16
|
|
26
54
|
version: 0.7.16(openai@6.16.0(ws@8.19.0)(zod@4.3.5))(ws@8.19.0)
|
|
55
|
+
esbuild:
|
|
56
|
+
specifier: ^0.27.2
|
|
57
|
+
version: 0.27.2
|
|
27
58
|
eslint:
|
|
28
59
|
specifier: ^9
|
|
29
60
|
version: 9.39.2(jiti@1.21.7)
|
|
@@ -35,7 +66,10 @@ importers:
|
|
|
35
66
|
version: 8.5.6
|
|
36
67
|
tailwindcss:
|
|
37
68
|
specifier: ^3.4.17
|
|
38
|
-
version: 3.4.19
|
|
69
|
+
version: 3.4.19(tsx@4.21.0)
|
|
70
|
+
tsx:
|
|
71
|
+
specifier: ^4.19.2
|
|
72
|
+
version: 4.21.0
|
|
39
73
|
typescript:
|
|
40
74
|
specifier: ^5.6.0
|
|
41
75
|
version: 5.9.3
|
|
@@ -44,7 +78,7 @@ importers:
|
|
|
44
78
|
version: 8.53.1(eslint@9.39.2(jiti@1.21.7))(typescript@5.9.3)
|
|
45
79
|
vite:
|
|
46
80
|
specifier: ^7.2.4
|
|
47
|
-
version: 7.3.1(@types/node@
|
|
81
|
+
version: 7.3.1(@types/node@22.19.15)(jiti@1.21.7)(tsx@4.21.0)
|
|
48
82
|
|
|
49
83
|
packages:
|
|
50
84
|
|
|
@@ -249,6 +283,9 @@ packages:
|
|
|
249
283
|
resolution: {integrity: sha512-43/qtrDUokr7LJqoF2c3+RInu/t4zfrpYdoSDfYyhg52rwLV6TnOvdG4fXm7IkSB3wErkcmJS9iEhjVtOSEjjA==}
|
|
250
284
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
251
285
|
|
|
286
|
+
'@hapi/bourne@3.0.0':
|
|
287
|
+
resolution: {integrity: sha512-Waj1cwPXJDucOib4a3bAISsKJVb15MKi9IvmTI/7ssVEm6sywXGjVJDhl6/umt1pK1ZS7PacXU3A1PmFKHEZ2w==}
|
|
288
|
+
|
|
252
289
|
'@humanfs/core@0.19.1':
|
|
253
290
|
resolution: {integrity: sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA==}
|
|
254
291
|
engines: {node: '>=18.18.0'}
|
|
@@ -278,6 +315,10 @@ packages:
|
|
|
278
315
|
'@jridgewell/trace-mapping@0.3.31':
|
|
279
316
|
resolution: {integrity: sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==}
|
|
280
317
|
|
|
318
|
+
'@koa/router@12.0.2':
|
|
319
|
+
resolution: {integrity: sha512-sYcHglGKTxGF+hQ6x67xDfkE9o+NhVlRHBqq6gLywaMc6CojK/5vFZByphdonKinYlMLkEkacm+HEse9HzwgTA==}
|
|
320
|
+
engines: {node: '>= 12'}
|
|
321
|
+
|
|
281
322
|
'@langchain/core@1.1.16':
|
|
282
323
|
resolution: {integrity: sha512-2XKQKxvQdeQiuIo0tacAmDVojhSVAci8D2WDdmmyN+6CqDusLHEHyIDaOt4o+UBvpkyHXbCdrljzDTQY/AKeqg==}
|
|
283
324
|
engines: {node: '>=20'}
|
|
@@ -462,18 +503,78 @@ packages:
|
|
|
462
503
|
resolution: {integrity: sha512-Fukw1cUTQ6xdLiHDJhKKPu6svEPaCEDvThqCne3OaQyZvuq2qjhJAd91kJu3PXLG18aooCgYBaB6qQz35hhABg==}
|
|
463
504
|
engines: {node: '>=20.0.0'}
|
|
464
505
|
|
|
506
|
+
'@types/accepts@1.3.7':
|
|
507
|
+
resolution: {integrity: sha512-Pay9fq2lM2wXPWbteBsRAGiWH2hig4ZE2asK+mm7kUzlxRTfL961rj89I6zV/E3PcIkDqyuBEcMxFT7rccugeQ==}
|
|
508
|
+
|
|
509
|
+
'@types/body-parser@1.19.6':
|
|
510
|
+
resolution: {integrity: sha512-HLFeCYgz89uk22N5Qg3dvGvsv46B8GLvKKo1zKG4NybA8U2DiEO3w9lqGg29t/tfLRJpJ6iQxnVw4OnB7MoM9g==}
|
|
511
|
+
|
|
512
|
+
'@types/connect@3.4.38':
|
|
513
|
+
resolution: {integrity: sha512-K6uROf1LD88uDQqJCktA4yzL1YYAK6NgfsI0v/mTgyPKWsX1CnJ0XPSDhViejru1GcRkLWb8RlzFYJRqGUbaug==}
|
|
514
|
+
|
|
515
|
+
'@types/content-disposition@0.5.9':
|
|
516
|
+
resolution: {integrity: sha512-8uYXI3Gw35MhiVYhG3s295oihrxRyytcRHjSjqnqZVDDy/xcGBRny7+Xj1Wgfhv5QzRtN2hB2dVRBUX9XW3UcQ==}
|
|
517
|
+
|
|
518
|
+
'@types/cookies@0.9.2':
|
|
519
|
+
resolution: {integrity: sha512-1AvkDdZM2dbyFybL4fxpuNCaWyv//0AwsuUk2DWeXyM1/5ZKm6W3z6mQi24RZ4l2ucY+bkSHzbDVpySqPGuV8A==}
|
|
520
|
+
|
|
465
521
|
'@types/estree@1.0.8':
|
|
466
522
|
resolution: {integrity: sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==}
|
|
467
523
|
|
|
524
|
+
'@types/express-serve-static-core@5.1.1':
|
|
525
|
+
resolution: {integrity: sha512-v4zIMr/cX7/d2BpAEX3KNKL/JrT1s43s96lLvvdTmza1oEvDudCqK9aF/djc/SWgy8Yh0h30TZx5VpzqFCxk5A==}
|
|
526
|
+
|
|
527
|
+
'@types/express@5.0.6':
|
|
528
|
+
resolution: {integrity: sha512-sKYVuV7Sv9fbPIt/442koC7+IIwK5olP1KWeD88e/idgoJqDm3JV/YUiPwkoKK92ylff2MGxSz1CSjsXelx0YA==}
|
|
529
|
+
|
|
530
|
+
'@types/http-assert@1.5.6':
|
|
531
|
+
resolution: {integrity: sha512-TTEwmtjgVbYAzZYWyeHPrrtWnfVkm8tQkP8P21uQifPgMRgjrow3XDEYqucuC8SKZJT7pUnhU/JymvjggxO9vw==}
|
|
532
|
+
|
|
533
|
+
'@types/http-errors@2.0.5':
|
|
534
|
+
resolution: {integrity: sha512-r8Tayk8HJnX0FztbZN7oVqGccWgw98T/0neJphO91KkmOzug1KkofZURD4UaD5uH8AqcFLfdPErnBod0u71/qg==}
|
|
535
|
+
|
|
468
536
|
'@types/json-schema@7.0.15':
|
|
469
537
|
resolution: {integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==}
|
|
470
538
|
|
|
471
|
-
'@types/
|
|
472
|
-
resolution: {integrity: sha512-
|
|
539
|
+
'@types/keygrip@1.0.6':
|
|
540
|
+
resolution: {integrity: sha512-lZuNAY9xeJt7Bx4t4dx0rYCDqGPW8RXhQZK1td7d4H6E9zYbLoOtjBvfwdTKpsyxQI/2jv+armjX/RW+ZNpXOQ==}
|
|
541
|
+
|
|
542
|
+
'@types/koa-bodyparser@4.3.13':
|
|
543
|
+
resolution: {integrity: sha512-yW9afsDnV1ymnhMBfAlzsKZ45sYnvIlTRS+eF5MUZOQ8ePIIj3ajwi+9b4a0vdyYvh6uJKYibU8R1zrUIpCmCA==}
|
|
544
|
+
|
|
545
|
+
'@types/koa-compose@3.2.9':
|
|
546
|
+
resolution: {integrity: sha512-BroAZ9FTvPiCy0Pi8tjD1OfJ7bgU1gQf0eR6e1Vm+JJATy9eKOG3hQMFtMciMawiSOVnLMdmUOC46s7HBhSTsA==}
|
|
547
|
+
|
|
548
|
+
'@types/koa-send@4.1.6':
|
|
549
|
+
resolution: {integrity: sha512-vgnNGoOJkx7FrF0Jl6rbK1f8bBecqAchKpXtKuXzqIEdXTDO6dsSTjr+eZ5m7ltSjH4K/E7auNJEQCAd0McUPA==}
|
|
550
|
+
|
|
551
|
+
'@types/koa-static@4.0.4':
|
|
552
|
+
resolution: {integrity: sha512-j1AUzzl7eJYEk9g01hNTlhmipFh8RFbOQmaMNLvLcNNAkPw0bdTs3XTa3V045XFlrWN0QYnblbDJv2RzawTn6A==}
|
|
553
|
+
|
|
554
|
+
'@types/koa@2.15.0':
|
|
555
|
+
resolution: {integrity: sha512-7QFsywoE5URbuVnG3loe03QXuGajrnotr3gQkXcEBShORai23MePfFYdhz90FEtBBpkyIYQbVD+evKtloCgX3g==}
|
|
556
|
+
|
|
557
|
+
'@types/koa__router@12.0.5':
|
|
558
|
+
resolution: {integrity: sha512-1HeLxuDn4n5it1yZYCSyOYXo++73zT0ffoviXnPxbwbxLbvDFEvWD9ZzpRiIpK4oKR0pi+K+Mk/ZjyROjW3HSw==}
|
|
559
|
+
|
|
560
|
+
'@types/node@22.19.15':
|
|
561
|
+
resolution: {integrity: sha512-F0R/h2+dsy5wJAUe3tAU6oqa2qbWY5TpNfL/RGmo1y38hiyO1w3x2jPtt76wmuaJI4DQnOBu21cNXQ2STIUUWg==}
|
|
473
562
|
|
|
474
563
|
'@types/phoenix@1.6.7':
|
|
475
564
|
resolution: {integrity: sha512-oN9ive//QSBkf19rfDv45M7eZPi0eEXylht2OLEXicu5b4KoQ1OzXIw+xDSGWxSxe1JmepRR/ZH283vsu518/Q==}
|
|
476
565
|
|
|
566
|
+
'@types/qs@6.15.0':
|
|
567
|
+
resolution: {integrity: sha512-JawvT8iBVWpzTrz3EGw9BTQFg3BQNmwERdKE22vlTxawwtbyUSlMppvZYKLZzB5zgACXdXxbD3m1bXaMqP/9ow==}
|
|
568
|
+
|
|
569
|
+
'@types/range-parser@1.2.7':
|
|
570
|
+
resolution: {integrity: sha512-hKormJbkJqzQGhziax5PItDUTMAM9uE2XXQmM37dyd4hVM+5aVl7oVxMVUiVQn2oCQFN/LKCZdvSM0pFRqbSmQ==}
|
|
571
|
+
|
|
572
|
+
'@types/send@1.2.1':
|
|
573
|
+
resolution: {integrity: sha512-arsCikDvlU99zl1g69TcAB3mzZPpxgw0UQnaHeC1Nwb015xp8bknZv5rIfri9xTOcMuaVgvabfIRA7PSZVuZIQ==}
|
|
574
|
+
|
|
575
|
+
'@types/serve-static@2.2.0':
|
|
576
|
+
resolution: {integrity: sha512-8mam4H1NHLtu7nmtalF7eyBH14QyOASmcxHhSfEoRyr0nP/YdoesEtU+uSRvMe96TW/HPTtkoKqQLl53N7UXMQ==}
|
|
577
|
+
|
|
477
578
|
'@types/uuid@10.0.0':
|
|
478
579
|
resolution: {integrity: sha512-7gqG38EyHgyP1S+7+xomFtL+ZNHcKv6DwNaCZmJmo1vgMugyF3TCnXVg4t1uk89mLNwnLtnY3TpOpCOyp1/xHQ==}
|
|
479
580
|
|
|
@@ -539,6 +640,10 @@ packages:
|
|
|
539
640
|
resolution: {integrity: sha512-oy+wV7xDKFPRyNggmXuZQSBzvoLnpmJs+GhzRhPjrxl2b/jIlyjVokzm47CZCDUdXKr2zd7ZLodPfOBpOPyPlg==}
|
|
540
641
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
541
642
|
|
|
643
|
+
accepts@1.3.8:
|
|
644
|
+
resolution: {integrity: sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==}
|
|
645
|
+
engines: {node: '>= 0.6'}
|
|
646
|
+
|
|
542
647
|
acorn-jsx@5.3.2:
|
|
543
648
|
resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==}
|
|
544
649
|
peerDependencies:
|
|
@@ -615,10 +720,22 @@ packages:
|
|
|
615
720
|
engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
|
|
616
721
|
hasBin: true
|
|
617
722
|
|
|
723
|
+
bytes@3.1.2:
|
|
724
|
+
resolution: {integrity: sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==}
|
|
725
|
+
engines: {node: '>= 0.8'}
|
|
726
|
+
|
|
727
|
+
cache-content-type@1.0.1:
|
|
728
|
+
resolution: {integrity: sha512-IKufZ1o4Ut42YUrZSo8+qnMTrFuKkvyoLXUywKz9GJ5BrhOFGhLdkx9sG4KAnVvbY6kEcSFjLQul+DVmBm2bgA==}
|
|
729
|
+
engines: {node: '>= 6.0.0'}
|
|
730
|
+
|
|
618
731
|
call-bind-apply-helpers@1.0.2:
|
|
619
732
|
resolution: {integrity: sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==}
|
|
620
733
|
engines: {node: '>= 0.4'}
|
|
621
734
|
|
|
735
|
+
call-bound@1.0.4:
|
|
736
|
+
resolution: {integrity: sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg==}
|
|
737
|
+
engines: {node: '>= 0.4'}
|
|
738
|
+
|
|
622
739
|
callsites@3.1.0:
|
|
623
740
|
resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==}
|
|
624
741
|
engines: {node: '>=6'}
|
|
@@ -642,6 +759,14 @@ packages:
|
|
|
642
759
|
resolution: {integrity: sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==}
|
|
643
760
|
engines: {node: '>= 8.10.0'}
|
|
644
761
|
|
|
762
|
+
co-body@6.2.0:
|
|
763
|
+
resolution: {integrity: sha512-Kbpv2Yd1NdL1V/V4cwLVxraHDV6K8ayohr2rmH0J87Er8+zJjcTa6dAn9QMPC9CRgU8+aNajKbSf1TzDB1yKPA==}
|
|
764
|
+
engines: {node: '>=8.0.0'}
|
|
765
|
+
|
|
766
|
+
co@4.6.0:
|
|
767
|
+
resolution: {integrity: sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==}
|
|
768
|
+
engines: {iojs: '>= 1.0.0', node: '>= 0.12.0'}
|
|
769
|
+
|
|
645
770
|
color-convert@2.0.1:
|
|
646
771
|
resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==}
|
|
647
772
|
engines: {node: '>=7.0.0'}
|
|
@@ -663,6 +788,21 @@ packages:
|
|
|
663
788
|
console-table-printer@2.15.0:
|
|
664
789
|
resolution: {integrity: sha512-SrhBq4hYVjLCkBVOWaTzceJalvn5K1Zq5aQA6wXC/cYjI3frKWNPEMK3sZsJfNNQApvCQmgBcc13ZKmFj8qExw==}
|
|
665
790
|
|
|
791
|
+
content-disposition@0.5.4:
|
|
792
|
+
resolution: {integrity: sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==}
|
|
793
|
+
engines: {node: '>= 0.6'}
|
|
794
|
+
|
|
795
|
+
content-type@1.0.5:
|
|
796
|
+
resolution: {integrity: sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==}
|
|
797
|
+
engines: {node: '>= 0.6'}
|
|
798
|
+
|
|
799
|
+
cookies@0.9.1:
|
|
800
|
+
resolution: {integrity: sha512-TG2hpqe4ELx54QER/S3HQ9SRVnQnGBtKUz5bLQWtYAQ+o6GpgMs6sYUvaiJjVxb+UXwhRhAEP3m7LbsIZ77Hmw==}
|
|
801
|
+
engines: {node: '>= 0.8'}
|
|
802
|
+
|
|
803
|
+
copy-to@2.0.1:
|
|
804
|
+
resolution: {integrity: sha512-3DdaFaU/Zf1AnpLiFDeNCD4TOWe3Zl2RZaTzUvWiIk5ERzcCodOE20Vqq4fzCbNoHURFHT4/us/Lfq+S2zyY4w==}
|
|
805
|
+
|
|
666
806
|
coze-coding-dev-sdk@0.7.16:
|
|
667
807
|
resolution: {integrity: sha512-B7gRPBa+sfrZL8ur0+F/92SOgZgFaWD/fOnCN2DjthnHSdmCYhAJWCfqzG2oO2vwTiYCXkKUuTBZ3MJLMj886g==}
|
|
668
808
|
engines: {node: '>=18.0.0'}
|
|
@@ -677,6 +817,14 @@ packages:
|
|
|
677
817
|
engines: {node: '>=4'}
|
|
678
818
|
hasBin: true
|
|
679
819
|
|
|
820
|
+
debug@3.2.7:
|
|
821
|
+
resolution: {integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==}
|
|
822
|
+
peerDependencies:
|
|
823
|
+
supports-color: '*'
|
|
824
|
+
peerDependenciesMeta:
|
|
825
|
+
supports-color:
|
|
826
|
+
optional: true
|
|
827
|
+
|
|
680
828
|
debug@4.4.3:
|
|
681
829
|
resolution: {integrity: sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==}
|
|
682
830
|
engines: {node: '>=6.0'}
|
|
@@ -690,6 +838,9 @@ packages:
|
|
|
690
838
|
resolution: {integrity: sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==}
|
|
691
839
|
engines: {node: '>=0.10.0'}
|
|
692
840
|
|
|
841
|
+
deep-equal@1.0.1:
|
|
842
|
+
resolution: {integrity: sha512-bHtC0iYvWhyaTzvV3CZgPeZQqCOBGyGsVV7v4eevpdkLHfiSrXUdBG+qAuSz4RI70sszvjQ1QSZ98An1yNwpSw==}
|
|
843
|
+
|
|
693
844
|
deep-is@0.1.4:
|
|
694
845
|
resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==}
|
|
695
846
|
|
|
@@ -697,6 +848,21 @@ packages:
|
|
|
697
848
|
resolution: {integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==}
|
|
698
849
|
engines: {node: '>=0.4.0'}
|
|
699
850
|
|
|
851
|
+
delegates@1.0.0:
|
|
852
|
+
resolution: {integrity: sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ==}
|
|
853
|
+
|
|
854
|
+
depd@1.1.2:
|
|
855
|
+
resolution: {integrity: sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ==}
|
|
856
|
+
engines: {node: '>= 0.6'}
|
|
857
|
+
|
|
858
|
+
depd@2.0.0:
|
|
859
|
+
resolution: {integrity: sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==}
|
|
860
|
+
engines: {node: '>= 0.8'}
|
|
861
|
+
|
|
862
|
+
destroy@1.2.0:
|
|
863
|
+
resolution: {integrity: sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==}
|
|
864
|
+
engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16}
|
|
865
|
+
|
|
700
866
|
didyoumean@1.2.2:
|
|
701
867
|
resolution: {integrity: sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==}
|
|
702
868
|
|
|
@@ -711,9 +877,16 @@ packages:
|
|
|
711
877
|
resolution: {integrity: sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==}
|
|
712
878
|
engines: {node: '>= 0.4'}
|
|
713
879
|
|
|
880
|
+
ee-first@1.1.1:
|
|
881
|
+
resolution: {integrity: sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==}
|
|
882
|
+
|
|
714
883
|
electron-to-chromium@1.5.267:
|
|
715
884
|
resolution: {integrity: sha512-0Drusm6MVRXSOJpGbaSVgcQsuB4hEkMpHXaVstcPmhu5LIedxs1xNK/nIxmQIU/RPC0+1/o0AVZfBTkTNJOdUw==}
|
|
716
885
|
|
|
886
|
+
encodeurl@1.0.2:
|
|
887
|
+
resolution: {integrity: sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==}
|
|
888
|
+
engines: {node: '>= 0.8'}
|
|
889
|
+
|
|
717
890
|
es-define-property@1.0.1:
|
|
718
891
|
resolution: {integrity: sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==}
|
|
719
892
|
engines: {node: '>= 0.4'}
|
|
@@ -739,6 +912,9 @@ packages:
|
|
|
739
912
|
resolution: {integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==}
|
|
740
913
|
engines: {node: '>=6'}
|
|
741
914
|
|
|
915
|
+
escape-html@1.0.3:
|
|
916
|
+
resolution: {integrity: sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==}
|
|
917
|
+
|
|
742
918
|
escape-string-regexp@4.0.0:
|
|
743
919
|
resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==}
|
|
744
920
|
engines: {node: '>=10'}
|
|
@@ -848,6 +1024,10 @@ packages:
|
|
|
848
1024
|
fraction.js@5.3.4:
|
|
849
1025
|
resolution: {integrity: sha512-1X1NTtiJphryn/uLQz3whtY6jK3fTqoE3ohKs0tT+Ujr1W59oopxmoEh7Lu5p6vBaPbgoM0bzveAW4Qi5RyWDQ==}
|
|
850
1026
|
|
|
1027
|
+
fresh@0.5.2:
|
|
1028
|
+
resolution: {integrity: sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==}
|
|
1029
|
+
engines: {node: '>= 0.6'}
|
|
1030
|
+
|
|
851
1031
|
fsevents@2.3.3:
|
|
852
1032
|
resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==}
|
|
853
1033
|
engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
|
|
@@ -864,6 +1044,9 @@ packages:
|
|
|
864
1044
|
resolution: {integrity: sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==}
|
|
865
1045
|
engines: {node: '>= 0.4'}
|
|
866
1046
|
|
|
1047
|
+
get-tsconfig@4.13.6:
|
|
1048
|
+
resolution: {integrity: sha512-shZT/QMiSHc/YBLxxOkMtgSid5HFoauqCE3/exfsEcwg1WkeqjG+V40yBbBrsD+jW2HDXcs28xOfcbm2jI8Ddw==}
|
|
1049
|
+
|
|
867
1050
|
glob-parent@5.1.2:
|
|
868
1051
|
resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==}
|
|
869
1052
|
engines: {node: '>= 6'}
|
|
@@ -896,10 +1079,30 @@ packages:
|
|
|
896
1079
|
resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==}
|
|
897
1080
|
engines: {node: '>= 0.4'}
|
|
898
1081
|
|
|
1082
|
+
http-assert@1.5.0:
|
|
1083
|
+
resolution: {integrity: sha512-uPpH7OKX4H25hBmU6G1jWNaqJGpTXxey+YOUizJUAgu0AjLUeC8D73hTrhvDS5D+GJN1DN1+hhc/eF/wpxtp0w==}
|
|
1084
|
+
engines: {node: '>= 0.8'}
|
|
1085
|
+
|
|
1086
|
+
http-errors@1.6.3:
|
|
1087
|
+
resolution: {integrity: sha512-lks+lVC8dgGyh97jxvxeYTWQFvh4uw4yC12gVl63Cg30sjPX4wuGcdkICVXDAESr6OJGjqGA8Iz5mkeN6zlD7A==}
|
|
1088
|
+
engines: {node: '>= 0.6'}
|
|
1089
|
+
|
|
1090
|
+
http-errors@1.8.1:
|
|
1091
|
+
resolution: {integrity: sha512-Kpk9Sm7NmI+RHhnj6OIWDI1d6fIoFAtFt9RLaTMRlg/8w49juAStsrBgp0Dp4OdxdVbRIeKhtCUvoi/RuAhO4g==}
|
|
1092
|
+
engines: {node: '>= 0.6'}
|
|
1093
|
+
|
|
1094
|
+
http-errors@2.0.1:
|
|
1095
|
+
resolution: {integrity: sha512-4FbRdAX+bSdmo4AUFuS0WNiPz8NgFt+r8ThgNWmlrjQjt1Q7ZR9+zTlce2859x4KSXrwIsaeTqDoKQmtP8pLmQ==}
|
|
1096
|
+
engines: {node: '>= 0.8'}
|
|
1097
|
+
|
|
899
1098
|
iceberg-js@0.8.1:
|
|
900
1099
|
resolution: {integrity: sha512-1dhVQZXhcHje7798IVM+xoo/1ZdVfzOMIc8/rgVSijRK38EDqOJoGula9N/8ZI5RD8QTxNQtK/Gozpr+qUqRRA==}
|
|
901
1100
|
engines: {node: '>=20.0.0'}
|
|
902
1101
|
|
|
1102
|
+
iconv-lite@0.4.24:
|
|
1103
|
+
resolution: {integrity: sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==}
|
|
1104
|
+
engines: {node: '>=0.10.0'}
|
|
1105
|
+
|
|
903
1106
|
ignore@5.3.2:
|
|
904
1107
|
resolution: {integrity: sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==}
|
|
905
1108
|
engines: {node: '>= 4'}
|
|
@@ -916,6 +1119,16 @@ packages:
|
|
|
916
1119
|
resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==}
|
|
917
1120
|
engines: {node: '>=0.8.19'}
|
|
918
1121
|
|
|
1122
|
+
inflation@2.1.0:
|
|
1123
|
+
resolution: {integrity: sha512-t54PPJHG1Pp7VQvxyVCJ9mBbjG3Hqryges9bXoOO6GExCPa+//i/d5GSuFtpx3ALLd7lgIAur6zrIlBQyJuMlQ==}
|
|
1124
|
+
engines: {node: '>= 0.8.0'}
|
|
1125
|
+
|
|
1126
|
+
inherits@2.0.3:
|
|
1127
|
+
resolution: {integrity: sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==}
|
|
1128
|
+
|
|
1129
|
+
inherits@2.0.4:
|
|
1130
|
+
resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==}
|
|
1131
|
+
|
|
919
1132
|
is-binary-path@2.1.0:
|
|
920
1133
|
resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==}
|
|
921
1134
|
engines: {node: '>=8'}
|
|
@@ -928,6 +1141,10 @@ packages:
|
|
|
928
1141
|
resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==}
|
|
929
1142
|
engines: {node: '>=0.10.0'}
|
|
930
1143
|
|
|
1144
|
+
is-generator-function@1.0.10:
|
|
1145
|
+
resolution: {integrity: sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==}
|
|
1146
|
+
engines: {node: '>= 0.4'}
|
|
1147
|
+
|
|
931
1148
|
is-glob@4.0.3:
|
|
932
1149
|
resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==}
|
|
933
1150
|
engines: {node: '>=0.10.0'}
|
|
@@ -959,9 +1176,37 @@ packages:
|
|
|
959
1176
|
json-stable-stringify-without-jsonify@1.0.1:
|
|
960
1177
|
resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==}
|
|
961
1178
|
|
|
1179
|
+
keygrip@1.1.0:
|
|
1180
|
+
resolution: {integrity: sha512-iYSchDJ+liQ8iwbSI2QqsQOvqv58eJCEanyJPJi+Khyu8smkcKSFUCbPwzFcL7YVtZ6eONjqRX/38caJ7QjRAQ==}
|
|
1181
|
+
engines: {node: '>= 0.6'}
|
|
1182
|
+
deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.
|
|
1183
|
+
|
|
962
1184
|
keyv@4.5.4:
|
|
963
1185
|
resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==}
|
|
964
1186
|
|
|
1187
|
+
koa-bodyparser@4.4.1:
|
|
1188
|
+
resolution: {integrity: sha512-kBH3IYPMb+iAXnrxIhXnW+gXV8OTzCu8VPDqvcDHW9SQrbkHmqPQtiZwrltNmSq6/lpipHnT7k7PsjlVD7kK0w==}
|
|
1189
|
+
engines: {node: '>=8.0.0'}
|
|
1190
|
+
|
|
1191
|
+
koa-compose@4.1.0:
|
|
1192
|
+
resolution: {integrity: sha512-8ODW8TrDuMYvXRwra/Kh7/rJo9BtOfPc6qO8eAfC80CnCvSjSl0bkRM24X6/XBBEyj0v1nRUQ1LyOy3dbqOWXw==}
|
|
1193
|
+
|
|
1194
|
+
koa-convert@2.0.0:
|
|
1195
|
+
resolution: {integrity: sha512-asOvN6bFlSnxewce2e/DK3p4tltyfC4VM7ZwuTuepI7dEQVcvpyFuBcEARu1+Hxg8DIwytce2n7jrZtRlPrARA==}
|
|
1196
|
+
engines: {node: '>= 10'}
|
|
1197
|
+
|
|
1198
|
+
koa-send@5.0.1:
|
|
1199
|
+
resolution: {integrity: sha512-tmcyQ/wXXuxpDxyNXv5yNNkdAMdFRqwtegBXUaowiQzUKqJehttS0x2j0eOZDQAyloAth5w6wwBImnFzkUz3pQ==}
|
|
1200
|
+
engines: {node: '>= 8'}
|
|
1201
|
+
|
|
1202
|
+
koa-static@5.0.0:
|
|
1203
|
+
resolution: {integrity: sha512-UqyYyH5YEXaJrf9S8E23GoJFQZXkBVJ9zYYMPGz919MSX1KuvAcycIuS0ci150HCoPf4XQVhQ84Qf8xRPWxFaQ==}
|
|
1204
|
+
engines: {node: '>= 7.6.0'}
|
|
1205
|
+
|
|
1206
|
+
koa@2.16.4:
|
|
1207
|
+
resolution: {integrity: sha512-3An0GCLDSR34tsCO4H8Tef8Pp2ngtaZDAZnsWJYelqXUK5wyiHvGItgK/xcSkmHLSTn1Jcho1mRQs2ehRzvKKw==}
|
|
1208
|
+
engines: {node: ^4.8.4 || ^6.10.1 || ^7.10.1 || >= 8.1.4}
|
|
1209
|
+
|
|
965
1210
|
langsmith@0.4.7:
|
|
966
1211
|
resolution: {integrity: sha512-Esv5g/J8wwRwbGQr10PB9+bLsNk0mWbrXc7nnEreQDhh0azbU57I7epSnT7GC4sS4EOWavhbxk+6p8PTXtreHw==}
|
|
967
1212
|
peerDependencies:
|
|
@@ -1001,10 +1246,18 @@ packages:
|
|
|
1001
1246
|
resolution: {integrity: sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==}
|
|
1002
1247
|
engines: {node: '>= 0.4'}
|
|
1003
1248
|
|
|
1249
|
+
media-typer@0.3.0:
|
|
1250
|
+
resolution: {integrity: sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==}
|
|
1251
|
+
engines: {node: '>= 0.6'}
|
|
1252
|
+
|
|
1004
1253
|
merge2@1.4.1:
|
|
1005
1254
|
resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==}
|
|
1006
1255
|
engines: {node: '>= 8'}
|
|
1007
1256
|
|
|
1257
|
+
methods@1.1.2:
|
|
1258
|
+
resolution: {integrity: sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==}
|
|
1259
|
+
engines: {node: '>= 0.6'}
|
|
1260
|
+
|
|
1008
1261
|
micromatch@4.0.8:
|
|
1009
1262
|
resolution: {integrity: sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==}
|
|
1010
1263
|
engines: {node: '>=8.6'}
|
|
@@ -1042,6 +1295,10 @@ packages:
|
|
|
1042
1295
|
natural-compare@1.4.0:
|
|
1043
1296
|
resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==}
|
|
1044
1297
|
|
|
1298
|
+
negotiator@0.6.3:
|
|
1299
|
+
resolution: {integrity: sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==}
|
|
1300
|
+
engines: {node: '>= 0.6'}
|
|
1301
|
+
|
|
1045
1302
|
node-releases@2.0.27:
|
|
1046
1303
|
resolution: {integrity: sha512-nmh3lCkYZ3grZvqcCH+fjmQ7X+H0OeZgP40OierEaAptX4XofMh5kwNbWh7lBduUzCcV/8kZ+NDLCwm2iorIlA==}
|
|
1047
1304
|
|
|
@@ -1057,10 +1314,21 @@ packages:
|
|
|
1057
1314
|
resolution: {integrity: sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==}
|
|
1058
1315
|
engines: {node: '>= 6'}
|
|
1059
1316
|
|
|
1317
|
+
object-inspect@1.13.4:
|
|
1318
|
+
resolution: {integrity: sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew==}
|
|
1319
|
+
engines: {node: '>= 0.4'}
|
|
1320
|
+
|
|
1321
|
+
on-finished@2.4.1:
|
|
1322
|
+
resolution: {integrity: sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==}
|
|
1323
|
+
engines: {node: '>= 0.8'}
|
|
1324
|
+
|
|
1060
1325
|
only-allow@1.2.2:
|
|
1061
1326
|
resolution: {integrity: sha512-uxyNYDsCh5YIJ780G7hC5OHjVUr9reHsbZNMM80L9tZlTpb3hUzb36KXgW4ZUGtJKQnGA3xegmWg1BxhWV0jJA==}
|
|
1062
1327
|
hasBin: true
|
|
1063
1328
|
|
|
1329
|
+
only@0.0.2:
|
|
1330
|
+
resolution: {integrity: sha512-Fvw+Jemq5fjjyWz6CpKx6w9s7xxqo3+JCyM0WXWeCSOboZ8ABkyvP8ID4CZuChA/wxSx+XSJmdOm8rGVyJ1hdQ==}
|
|
1331
|
+
|
|
1064
1332
|
openai@6.16.0:
|
|
1065
1333
|
resolution: {integrity: sha512-fZ1uBqjFUjXzbGc35fFtYKEOxd20kd9fDpFeqWtsOZWiubY8CZ1NAlXHW3iathaFvqmNtCWMIsosCuyeI7Joxg==}
|
|
1066
1334
|
hasBin: true
|
|
@@ -1101,10 +1369,18 @@ packages:
|
|
|
1101
1369
|
resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==}
|
|
1102
1370
|
engines: {node: '>=6'}
|
|
1103
1371
|
|
|
1372
|
+
parseurl@1.3.3:
|
|
1373
|
+
resolution: {integrity: sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==}
|
|
1374
|
+
engines: {node: '>= 0.8'}
|
|
1375
|
+
|
|
1104
1376
|
path-exists@4.0.0:
|
|
1105
1377
|
resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==}
|
|
1106
1378
|
engines: {node: '>=8'}
|
|
1107
1379
|
|
|
1380
|
+
path-is-absolute@1.0.1:
|
|
1381
|
+
resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==}
|
|
1382
|
+
engines: {node: '>=0.10.0'}
|
|
1383
|
+
|
|
1108
1384
|
path-key@3.1.1:
|
|
1109
1385
|
resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==}
|
|
1110
1386
|
engines: {node: '>=8'}
|
|
@@ -1112,6 +1388,12 @@ packages:
|
|
|
1112
1388
|
path-parse@1.0.7:
|
|
1113
1389
|
resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==}
|
|
1114
1390
|
|
|
1391
|
+
path-to-regexp@6.3.0:
|
|
1392
|
+
resolution: {integrity: sha512-Yhpw4T9C6hPpgPeA28us07OJeqZ5EzQTkbfwuhsUg0c237RomFoETJgmp2sa3F/41gfLE6G5cqcYwznmeEeOlQ==}
|
|
1393
|
+
|
|
1394
|
+
pg-cloudflare@1.3.0:
|
|
1395
|
+
resolution: {integrity: sha512-6lswVVSztmHiRtD6I8hw4qP/nDm1EJbKMRhf3HCYaqud7frGysPv7FYJ5noZQdhQtN2xJnimfMtvQq21pdbzyQ==}
|
|
1396
|
+
|
|
1115
1397
|
pg-connection-string@2.10.1:
|
|
1116
1398
|
resolution: {integrity: sha512-iNzslsoeSH2/gmDDKiyMqF64DATUCWj3YJ0wP14kqcsf2TUklwimd+66yYojKwZCA7h2yRNLGug71hCBA2a4sw==}
|
|
1117
1399
|
|
|
@@ -1236,9 +1518,17 @@ packages:
|
|
|
1236
1518
|
resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==}
|
|
1237
1519
|
engines: {node: '>=6'}
|
|
1238
1520
|
|
|
1521
|
+
qs@6.15.0:
|
|
1522
|
+
resolution: {integrity: sha512-mAZTtNCeetKMH+pSjrb76NAM8V9a05I9aBZOHztWy/UqcJdQYNsf59vrRKWnojAT9Y+GbIvoTBC++CPHqpDBhQ==}
|
|
1523
|
+
engines: {node: '>=0.6'}
|
|
1524
|
+
|
|
1239
1525
|
queue-microtask@1.2.3:
|
|
1240
1526
|
resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==}
|
|
1241
1527
|
|
|
1528
|
+
raw-body@2.5.3:
|
|
1529
|
+
resolution: {integrity: sha512-s4VSOf6yN0rvbRZGxs8Om5CWj6seneMwK3oDb4lWDH0UPhWcxwOWw5+qk24bxq87szX1ydrwylIOp2uG1ojUpA==}
|
|
1530
|
+
engines: {node: '>= 0.8'}
|
|
1531
|
+
|
|
1242
1532
|
read-cache@1.0.0:
|
|
1243
1533
|
resolution: {integrity: sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==}
|
|
1244
1534
|
|
|
@@ -1250,6 +1540,13 @@ packages:
|
|
|
1250
1540
|
resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==}
|
|
1251
1541
|
engines: {node: '>=4'}
|
|
1252
1542
|
|
|
1543
|
+
resolve-path@1.4.0:
|
|
1544
|
+
resolution: {integrity: sha512-i1xevIst/Qa+nA9olDxLWnLk8YZbi8R/7JPbCMcgyWaFR6bKWaexgJgEB5oc2PKMjYdrHynyz0NY+if+H98t1w==}
|
|
1545
|
+
engines: {node: '>= 0.8'}
|
|
1546
|
+
|
|
1547
|
+
resolve-pkg-maps@1.0.0:
|
|
1548
|
+
resolution: {integrity: sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==}
|
|
1549
|
+
|
|
1253
1550
|
resolve@1.22.11:
|
|
1254
1551
|
resolution: {integrity: sha512-RfqAvLnMl313r7c9oclB1HhUEAezcpLjz95wFH4LVuhk9JF/r22qmVP9AMmOU4vMX7Q8pN8jwNg/CSpdFnMjTQ==}
|
|
1255
1552
|
engines: {node: '>= 0.4'}
|
|
@@ -1267,11 +1564,23 @@ packages:
|
|
|
1267
1564
|
run-parallel@1.2.0:
|
|
1268
1565
|
resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==}
|
|
1269
1566
|
|
|
1567
|
+
safe-buffer@5.2.1:
|
|
1568
|
+
resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==}
|
|
1569
|
+
|
|
1570
|
+
safer-buffer@2.1.2:
|
|
1571
|
+
resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==}
|
|
1572
|
+
|
|
1270
1573
|
semver@7.7.3:
|
|
1271
1574
|
resolution: {integrity: sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q==}
|
|
1272
1575
|
engines: {node: '>=10'}
|
|
1273
1576
|
hasBin: true
|
|
1274
1577
|
|
|
1578
|
+
setprototypeof@1.1.0:
|
|
1579
|
+
resolution: {integrity: sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==}
|
|
1580
|
+
|
|
1581
|
+
setprototypeof@1.2.0:
|
|
1582
|
+
resolution: {integrity: sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==}
|
|
1583
|
+
|
|
1275
1584
|
shebang-command@2.0.0:
|
|
1276
1585
|
resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==}
|
|
1277
1586
|
engines: {node: '>=8'}
|
|
@@ -1280,6 +1589,22 @@ packages:
|
|
|
1280
1589
|
resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==}
|
|
1281
1590
|
engines: {node: '>=8'}
|
|
1282
1591
|
|
|
1592
|
+
side-channel-list@1.0.0:
|
|
1593
|
+
resolution: {integrity: sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA==}
|
|
1594
|
+
engines: {node: '>= 0.4'}
|
|
1595
|
+
|
|
1596
|
+
side-channel-map@1.0.1:
|
|
1597
|
+
resolution: {integrity: sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==}
|
|
1598
|
+
engines: {node: '>= 0.4'}
|
|
1599
|
+
|
|
1600
|
+
side-channel-weakmap@1.0.2:
|
|
1601
|
+
resolution: {integrity: sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==}
|
|
1602
|
+
engines: {node: '>= 0.4'}
|
|
1603
|
+
|
|
1604
|
+
side-channel@1.1.0:
|
|
1605
|
+
resolution: {integrity: sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==}
|
|
1606
|
+
engines: {node: '>= 0.4'}
|
|
1607
|
+
|
|
1283
1608
|
simple-wcswidth@1.1.2:
|
|
1284
1609
|
resolution: {integrity: sha512-j7piyCjAeTDSjzTSQ7DokZtMNwNlEAyxqSZeCS+CXH7fJ4jx3FuJ/mTW3mE+6JLs4VJBbcll0Kjn+KXI5t21Iw==}
|
|
1285
1610
|
|
|
@@ -1291,6 +1616,14 @@ packages:
|
|
|
1291
1616
|
resolution: {integrity: sha512-UcjcJOWknrNkF6PLX83qcHM6KHgVKNkV62Y8a5uYDVv9ydGQVwAHMKqHdJje1VTWpljG0WYpCDhrCdAOYH4TWg==}
|
|
1292
1617
|
engines: {node: '>= 10.x'}
|
|
1293
1618
|
|
|
1619
|
+
statuses@1.5.0:
|
|
1620
|
+
resolution: {integrity: sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==}
|
|
1621
|
+
engines: {node: '>= 0.6'}
|
|
1622
|
+
|
|
1623
|
+
statuses@2.0.2:
|
|
1624
|
+
resolution: {integrity: sha512-DvEy55V3DB7uknRo+4iOGT5fP1slR8wQohVdknigZPMpMstaKJQWhwiYBACJE3Ul2pTnATihhBYnRhZQHGBiRw==}
|
|
1625
|
+
engines: {node: '>= 0.8'}
|
|
1626
|
+
|
|
1294
1627
|
strip-json-comments@3.1.1:
|
|
1295
1628
|
resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==}
|
|
1296
1629
|
engines: {node: '>=8'}
|
|
@@ -1328,6 +1661,10 @@ packages:
|
|
|
1328
1661
|
resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==}
|
|
1329
1662
|
engines: {node: '>=8.0'}
|
|
1330
1663
|
|
|
1664
|
+
toidentifier@1.0.1:
|
|
1665
|
+
resolution: {integrity: sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==}
|
|
1666
|
+
engines: {node: '>=0.6'}
|
|
1667
|
+
|
|
1331
1668
|
ts-api-utils@2.4.0:
|
|
1332
1669
|
resolution: {integrity: sha512-3TaVTaAv2gTiMB35i3FiGJaRfwb3Pyn/j3m/bfAvGe8FB7CF6u+LMYqYlDh7reQf7UNvoTvdfAqHGmPGOSsPmA==}
|
|
1333
1670
|
engines: {node: '>=18.12'}
|
|
@@ -1340,10 +1677,23 @@ packages:
|
|
|
1340
1677
|
tslib@2.8.1:
|
|
1341
1678
|
resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==}
|
|
1342
1679
|
|
|
1680
|
+
tsscmp@1.0.6:
|
|
1681
|
+
resolution: {integrity: sha512-LxhtAkPDTkVCMQjt2h6eBVY28KCjikZqZfMcC15YBeNjkgUpdCfBu5HoiOTDu86v6smE8yOjyEktJ8hlbANHQA==}
|
|
1682
|
+
engines: {node: '>=0.6.x'}
|
|
1683
|
+
|
|
1684
|
+
tsx@4.21.0:
|
|
1685
|
+
resolution: {integrity: sha512-5C1sg4USs1lfG0GFb2RLXsdpXqBSEhAaA/0kPL01wxzpMqLILNxIxIOKiILz+cdg/pLnOUxFYOR5yhHU666wbw==}
|
|
1686
|
+
engines: {node: '>=18.0.0'}
|
|
1687
|
+
hasBin: true
|
|
1688
|
+
|
|
1343
1689
|
type-check@0.4.0:
|
|
1344
1690
|
resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==}
|
|
1345
1691
|
engines: {node: '>= 0.8.0'}
|
|
1346
1692
|
|
|
1693
|
+
type-is@1.6.18:
|
|
1694
|
+
resolution: {integrity: sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==}
|
|
1695
|
+
engines: {node: '>= 0.6'}
|
|
1696
|
+
|
|
1347
1697
|
typescript-eslint@8.53.1:
|
|
1348
1698
|
resolution: {integrity: sha512-gB+EVQfP5RDElh9ittfXlhZJdjSU4jUSTyE2+ia8CYyNvet4ElfaLlAIqDvQV9JPknKx0jQH1racTYe/4LaLSg==}
|
|
1349
1699
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
@@ -1356,8 +1706,12 @@ packages:
|
|
|
1356
1706
|
engines: {node: '>=14.17'}
|
|
1357
1707
|
hasBin: true
|
|
1358
1708
|
|
|
1359
|
-
undici-types@
|
|
1360
|
-
resolution: {integrity: sha512-
|
|
1709
|
+
undici-types@6.21.0:
|
|
1710
|
+
resolution: {integrity: sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ==}
|
|
1711
|
+
|
|
1712
|
+
unpipe@1.0.0:
|
|
1713
|
+
resolution: {integrity: sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==}
|
|
1714
|
+
engines: {node: '>= 0.8'}
|
|
1361
1715
|
|
|
1362
1716
|
update-browserslist-db@1.2.3:
|
|
1363
1717
|
resolution: {integrity: sha512-Js0m9cx+qOgDxo0eMiFGEueWztz+d4+M3rGlmKPT+T4IS/jP4ylw3Nwpu6cpTTP8R1MAC1kF4VbdLt3ARf209w==}
|
|
@@ -1375,6 +1729,10 @@ packages:
|
|
|
1375
1729
|
resolution: {integrity: sha512-8XkAphELsDnEGrDxUOHB3RGvXz6TeuYSGEZBOjtTtPm2lwhGBjLgOzLHB63IUWfBpNucQjND6d3AOudO+H3RWQ==}
|
|
1376
1730
|
hasBin: true
|
|
1377
1731
|
|
|
1732
|
+
vary@1.1.2:
|
|
1733
|
+
resolution: {integrity: sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==}
|
|
1734
|
+
engines: {node: '>= 0.8'}
|
|
1735
|
+
|
|
1378
1736
|
vite@7.3.1:
|
|
1379
1737
|
resolution: {integrity: sha512-w+N7Hifpc3gRjZ63vYBXA56dvvRlNWRczTdmCBBa+CotUzAPf5b7YMdMR/8CQoeYE5LX3W4wj6RYTgonm1b9DA==}
|
|
1380
1738
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
@@ -1444,6 +1802,10 @@ packages:
|
|
|
1444
1802
|
resolution: {integrity: sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==}
|
|
1445
1803
|
engines: {node: '>=0.4'}
|
|
1446
1804
|
|
|
1805
|
+
ylru@1.4.0:
|
|
1806
|
+
resolution: {integrity: sha512-2OQsPNEmBCvXuFlIni/a+Rn+R2pHW9INm0BxXJ4hVDA8TirqMj+J/Rp9ItLatT/5pZqWwefVrTQcHpixsxnVlA==}
|
|
1807
|
+
engines: {node: '>= 4.0.0'}
|
|
1808
|
+
|
|
1447
1809
|
yocto-queue@0.1.0:
|
|
1448
1810
|
resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==}
|
|
1449
1811
|
engines: {node: '>=10'}
|
|
@@ -1581,6 +1943,8 @@ snapshots:
|
|
|
1581
1943
|
'@eslint/core': 0.17.0
|
|
1582
1944
|
levn: 0.4.1
|
|
1583
1945
|
|
|
1946
|
+
'@hapi/bourne@3.0.0': {}
|
|
1947
|
+
|
|
1584
1948
|
'@humanfs/core@0.19.1': {}
|
|
1585
1949
|
|
|
1586
1950
|
'@humanfs/node@0.16.7':
|
|
@@ -1606,6 +1970,16 @@ snapshots:
|
|
|
1606
1970
|
'@jridgewell/resolve-uri': 3.1.2
|
|
1607
1971
|
'@jridgewell/sourcemap-codec': 1.5.5
|
|
1608
1972
|
|
|
1973
|
+
'@koa/router@12.0.2':
|
|
1974
|
+
dependencies:
|
|
1975
|
+
debug: 4.4.3
|
|
1976
|
+
http-errors: 2.0.1
|
|
1977
|
+
koa-compose: 4.1.0
|
|
1978
|
+
methods: 1.1.2
|
|
1979
|
+
path-to-regexp: 6.3.0
|
|
1980
|
+
transitivePeerDependencies:
|
|
1981
|
+
- supports-color
|
|
1982
|
+
|
|
1609
1983
|
'@langchain/core@1.1.16(openai@6.16.0(ws@8.19.0)(zod@4.3.5))':
|
|
1610
1984
|
dependencies:
|
|
1611
1985
|
'@cfworker/json-schema': 4.1.1
|
|
@@ -1758,21 +2132,107 @@ snapshots:
|
|
|
1758
2132
|
- bufferutil
|
|
1759
2133
|
- utf-8-validate
|
|
1760
2134
|
|
|
2135
|
+
'@types/accepts@1.3.7':
|
|
2136
|
+
dependencies:
|
|
2137
|
+
'@types/node': 22.19.15
|
|
2138
|
+
|
|
2139
|
+
'@types/body-parser@1.19.6':
|
|
2140
|
+
dependencies:
|
|
2141
|
+
'@types/connect': 3.4.38
|
|
2142
|
+
'@types/node': 22.19.15
|
|
2143
|
+
|
|
2144
|
+
'@types/connect@3.4.38':
|
|
2145
|
+
dependencies:
|
|
2146
|
+
'@types/node': 22.19.15
|
|
2147
|
+
|
|
2148
|
+
'@types/content-disposition@0.5.9': {}
|
|
2149
|
+
|
|
2150
|
+
'@types/cookies@0.9.2':
|
|
2151
|
+
dependencies:
|
|
2152
|
+
'@types/connect': 3.4.38
|
|
2153
|
+
'@types/express': 5.0.6
|
|
2154
|
+
'@types/keygrip': 1.0.6
|
|
2155
|
+
'@types/node': 22.19.15
|
|
2156
|
+
|
|
1761
2157
|
'@types/estree@1.0.8': {}
|
|
1762
2158
|
|
|
2159
|
+
'@types/express-serve-static-core@5.1.1':
|
|
2160
|
+
dependencies:
|
|
2161
|
+
'@types/node': 22.19.15
|
|
2162
|
+
'@types/qs': 6.15.0
|
|
2163
|
+
'@types/range-parser': 1.2.7
|
|
2164
|
+
'@types/send': 1.2.1
|
|
2165
|
+
|
|
2166
|
+
'@types/express@5.0.6':
|
|
2167
|
+
dependencies:
|
|
2168
|
+
'@types/body-parser': 1.19.6
|
|
2169
|
+
'@types/express-serve-static-core': 5.1.1
|
|
2170
|
+
'@types/serve-static': 2.2.0
|
|
2171
|
+
|
|
2172
|
+
'@types/http-assert@1.5.6': {}
|
|
2173
|
+
|
|
2174
|
+
'@types/http-errors@2.0.5': {}
|
|
2175
|
+
|
|
1763
2176
|
'@types/json-schema@7.0.15': {}
|
|
1764
2177
|
|
|
1765
|
-
'@types/
|
|
2178
|
+
'@types/keygrip@1.0.6': {}
|
|
2179
|
+
|
|
2180
|
+
'@types/koa-bodyparser@4.3.13':
|
|
2181
|
+
dependencies:
|
|
2182
|
+
'@types/koa': 2.15.0
|
|
2183
|
+
|
|
2184
|
+
'@types/koa-compose@3.2.9':
|
|
2185
|
+
dependencies:
|
|
2186
|
+
'@types/koa': 2.15.0
|
|
2187
|
+
|
|
2188
|
+
'@types/koa-send@4.1.6':
|
|
2189
|
+
dependencies:
|
|
2190
|
+
'@types/koa': 2.15.0
|
|
2191
|
+
|
|
2192
|
+
'@types/koa-static@4.0.4':
|
|
2193
|
+
dependencies:
|
|
2194
|
+
'@types/koa': 2.15.0
|
|
2195
|
+
'@types/koa-send': 4.1.6
|
|
2196
|
+
|
|
2197
|
+
'@types/koa@2.15.0':
|
|
2198
|
+
dependencies:
|
|
2199
|
+
'@types/accepts': 1.3.7
|
|
2200
|
+
'@types/content-disposition': 0.5.9
|
|
2201
|
+
'@types/cookies': 0.9.2
|
|
2202
|
+
'@types/http-assert': 1.5.6
|
|
2203
|
+
'@types/http-errors': 2.0.5
|
|
2204
|
+
'@types/keygrip': 1.0.6
|
|
2205
|
+
'@types/koa-compose': 3.2.9
|
|
2206
|
+
'@types/node': 22.19.15
|
|
2207
|
+
|
|
2208
|
+
'@types/koa__router@12.0.5':
|
|
2209
|
+
dependencies:
|
|
2210
|
+
'@types/koa': 2.15.0
|
|
2211
|
+
|
|
2212
|
+
'@types/node@22.19.15':
|
|
1766
2213
|
dependencies:
|
|
1767
|
-
undici-types:
|
|
2214
|
+
undici-types: 6.21.0
|
|
1768
2215
|
|
|
1769
2216
|
'@types/phoenix@1.6.7': {}
|
|
1770
2217
|
|
|
2218
|
+
'@types/qs@6.15.0': {}
|
|
2219
|
+
|
|
2220
|
+
'@types/range-parser@1.2.7': {}
|
|
2221
|
+
|
|
2222
|
+
'@types/send@1.2.1':
|
|
2223
|
+
dependencies:
|
|
2224
|
+
'@types/node': 22.19.15
|
|
2225
|
+
|
|
2226
|
+
'@types/serve-static@2.2.0':
|
|
2227
|
+
dependencies:
|
|
2228
|
+
'@types/http-errors': 2.0.5
|
|
2229
|
+
'@types/node': 22.19.15
|
|
2230
|
+
|
|
1771
2231
|
'@types/uuid@10.0.0': {}
|
|
1772
2232
|
|
|
1773
2233
|
'@types/ws@8.18.1':
|
|
1774
2234
|
dependencies:
|
|
1775
|
-
'@types/node':
|
|
2235
|
+
'@types/node': 22.19.15
|
|
1776
2236
|
|
|
1777
2237
|
'@typescript-eslint/eslint-plugin@8.53.1(@typescript-eslint/parser@8.53.1(eslint@9.39.2(jiti@1.21.7))(typescript@5.9.3))(eslint@9.39.2(jiti@1.21.7))(typescript@5.9.3)':
|
|
1778
2238
|
dependencies:
|
|
@@ -1865,6 +2325,11 @@ snapshots:
|
|
|
1865
2325
|
'@typescript-eslint/types': 8.53.1
|
|
1866
2326
|
eslint-visitor-keys: 4.2.1
|
|
1867
2327
|
|
|
2328
|
+
accepts@1.3.8:
|
|
2329
|
+
dependencies:
|
|
2330
|
+
mime-types: 2.1.35
|
|
2331
|
+
negotiator: 0.6.3
|
|
2332
|
+
|
|
1868
2333
|
acorn-jsx@5.3.2(acorn@8.15.0):
|
|
1869
2334
|
dependencies:
|
|
1870
2335
|
acorn: 8.15.0
|
|
@@ -1943,11 +2408,23 @@ snapshots:
|
|
|
1943
2408
|
node-releases: 2.0.27
|
|
1944
2409
|
update-browserslist-db: 1.2.3(browserslist@4.28.1)
|
|
1945
2410
|
|
|
2411
|
+
bytes@3.1.2: {}
|
|
2412
|
+
|
|
2413
|
+
cache-content-type@1.0.1:
|
|
2414
|
+
dependencies:
|
|
2415
|
+
mime-types: 2.1.35
|
|
2416
|
+
ylru: 1.4.0
|
|
2417
|
+
|
|
1946
2418
|
call-bind-apply-helpers@1.0.2:
|
|
1947
2419
|
dependencies:
|
|
1948
2420
|
es-errors: 1.3.0
|
|
1949
2421
|
function-bind: 1.1.2
|
|
1950
2422
|
|
|
2423
|
+
call-bound@1.0.4:
|
|
2424
|
+
dependencies:
|
|
2425
|
+
call-bind-apply-helpers: 1.0.2
|
|
2426
|
+
get-intrinsic: 1.3.0
|
|
2427
|
+
|
|
1951
2428
|
callsites@3.1.0: {}
|
|
1952
2429
|
|
|
1953
2430
|
camelcase-css@2.0.1: {}
|
|
@@ -1973,6 +2450,16 @@ snapshots:
|
|
|
1973
2450
|
optionalDependencies:
|
|
1974
2451
|
fsevents: 2.3.3
|
|
1975
2452
|
|
|
2453
|
+
co-body@6.2.0:
|
|
2454
|
+
dependencies:
|
|
2455
|
+
'@hapi/bourne': 3.0.0
|
|
2456
|
+
inflation: 2.1.0
|
|
2457
|
+
qs: 6.15.0
|
|
2458
|
+
raw-body: 2.5.3
|
|
2459
|
+
type-is: 1.6.18
|
|
2460
|
+
|
|
2461
|
+
co@4.6.0: {}
|
|
2462
|
+
|
|
1976
2463
|
color-convert@2.0.1:
|
|
1977
2464
|
dependencies:
|
|
1978
2465
|
color-name: 1.1.4
|
|
@@ -1991,6 +2478,19 @@ snapshots:
|
|
|
1991
2478
|
dependencies:
|
|
1992
2479
|
simple-wcswidth: 1.1.2
|
|
1993
2480
|
|
|
2481
|
+
content-disposition@0.5.4:
|
|
2482
|
+
dependencies:
|
|
2483
|
+
safe-buffer: 5.2.1
|
|
2484
|
+
|
|
2485
|
+
content-type@1.0.5: {}
|
|
2486
|
+
|
|
2487
|
+
cookies@0.9.1:
|
|
2488
|
+
dependencies:
|
|
2489
|
+
depd: 2.0.0
|
|
2490
|
+
keygrip: 1.1.0
|
|
2491
|
+
|
|
2492
|
+
copy-to@2.0.1: {}
|
|
2493
|
+
|
|
1994
2494
|
coze-coding-dev-sdk@0.7.16(openai@6.16.0(ws@8.19.0)(zod@4.3.5))(ws@8.19.0):
|
|
1995
2495
|
dependencies:
|
|
1996
2496
|
'@langchain/core': 1.1.16(openai@6.16.0(ws@8.19.0)(zod@4.3.5))
|
|
@@ -2017,16 +2517,30 @@ snapshots:
|
|
|
2017
2517
|
|
|
2018
2518
|
cssesc@3.0.0: {}
|
|
2019
2519
|
|
|
2520
|
+
debug@3.2.7:
|
|
2521
|
+
dependencies:
|
|
2522
|
+
ms: 2.1.3
|
|
2523
|
+
|
|
2020
2524
|
debug@4.4.3:
|
|
2021
2525
|
dependencies:
|
|
2022
2526
|
ms: 2.1.3
|
|
2023
2527
|
|
|
2024
2528
|
decamelize@1.2.0: {}
|
|
2025
2529
|
|
|
2530
|
+
deep-equal@1.0.1: {}
|
|
2531
|
+
|
|
2026
2532
|
deep-is@0.1.4: {}
|
|
2027
2533
|
|
|
2028
2534
|
delayed-stream@1.0.0: {}
|
|
2029
2535
|
|
|
2536
|
+
delegates@1.0.0: {}
|
|
2537
|
+
|
|
2538
|
+
depd@1.1.2: {}
|
|
2539
|
+
|
|
2540
|
+
depd@2.0.0: {}
|
|
2541
|
+
|
|
2542
|
+
destroy@1.2.0: {}
|
|
2543
|
+
|
|
2030
2544
|
didyoumean@1.2.2: {}
|
|
2031
2545
|
|
|
2032
2546
|
dlv@1.1.3: {}
|
|
@@ -2039,8 +2553,12 @@ snapshots:
|
|
|
2039
2553
|
es-errors: 1.3.0
|
|
2040
2554
|
gopd: 1.2.0
|
|
2041
2555
|
|
|
2556
|
+
ee-first@1.1.1: {}
|
|
2557
|
+
|
|
2042
2558
|
electron-to-chromium@1.5.267: {}
|
|
2043
2559
|
|
|
2560
|
+
encodeurl@1.0.2: {}
|
|
2561
|
+
|
|
2044
2562
|
es-define-property@1.0.1: {}
|
|
2045
2563
|
|
|
2046
2564
|
es-errors@1.3.0: {}
|
|
@@ -2087,6 +2605,8 @@ snapshots:
|
|
|
2087
2605
|
|
|
2088
2606
|
escalade@3.2.0: {}
|
|
2089
2607
|
|
|
2608
|
+
escape-html@1.0.3: {}
|
|
2609
|
+
|
|
2090
2610
|
escape-string-regexp@4.0.0: {}
|
|
2091
2611
|
|
|
2092
2612
|
eslint-scope@8.4.0:
|
|
@@ -2213,6 +2733,8 @@ snapshots:
|
|
|
2213
2733
|
|
|
2214
2734
|
fraction.js@5.3.4: {}
|
|
2215
2735
|
|
|
2736
|
+
fresh@0.5.2: {}
|
|
2737
|
+
|
|
2216
2738
|
fsevents@2.3.3:
|
|
2217
2739
|
optional: true
|
|
2218
2740
|
|
|
@@ -2236,6 +2758,10 @@ snapshots:
|
|
|
2236
2758
|
dunder-proto: 1.0.1
|
|
2237
2759
|
es-object-atoms: 1.1.1
|
|
2238
2760
|
|
|
2761
|
+
get-tsconfig@4.13.6:
|
|
2762
|
+
dependencies:
|
|
2763
|
+
resolve-pkg-maps: 1.0.0
|
|
2764
|
+
|
|
2239
2765
|
glob-parent@5.1.2:
|
|
2240
2766
|
dependencies:
|
|
2241
2767
|
is-glob: 4.0.3
|
|
@@ -2260,8 +2786,40 @@ snapshots:
|
|
|
2260
2786
|
dependencies:
|
|
2261
2787
|
function-bind: 1.1.2
|
|
2262
2788
|
|
|
2789
|
+
http-assert@1.5.0:
|
|
2790
|
+
dependencies:
|
|
2791
|
+
deep-equal: 1.0.1
|
|
2792
|
+
http-errors: 1.8.1
|
|
2793
|
+
|
|
2794
|
+
http-errors@1.6.3:
|
|
2795
|
+
dependencies:
|
|
2796
|
+
depd: 1.1.2
|
|
2797
|
+
inherits: 2.0.3
|
|
2798
|
+
setprototypeof: 1.1.0
|
|
2799
|
+
statuses: 1.5.0
|
|
2800
|
+
|
|
2801
|
+
http-errors@1.8.1:
|
|
2802
|
+
dependencies:
|
|
2803
|
+
depd: 1.1.2
|
|
2804
|
+
inherits: 2.0.4
|
|
2805
|
+
setprototypeof: 1.2.0
|
|
2806
|
+
statuses: 1.5.0
|
|
2807
|
+
toidentifier: 1.0.1
|
|
2808
|
+
|
|
2809
|
+
http-errors@2.0.1:
|
|
2810
|
+
dependencies:
|
|
2811
|
+
depd: 2.0.0
|
|
2812
|
+
inherits: 2.0.4
|
|
2813
|
+
setprototypeof: 1.2.0
|
|
2814
|
+
statuses: 2.0.2
|
|
2815
|
+
toidentifier: 1.0.1
|
|
2816
|
+
|
|
2263
2817
|
iceberg-js@0.8.1: {}
|
|
2264
2818
|
|
|
2819
|
+
iconv-lite@0.4.24:
|
|
2820
|
+
dependencies:
|
|
2821
|
+
safer-buffer: 2.1.2
|
|
2822
|
+
|
|
2265
2823
|
ignore@5.3.2: {}
|
|
2266
2824
|
|
|
2267
2825
|
ignore@7.0.5: {}
|
|
@@ -2273,6 +2831,12 @@ snapshots:
|
|
|
2273
2831
|
|
|
2274
2832
|
imurmurhash@0.1.4: {}
|
|
2275
2833
|
|
|
2834
|
+
inflation@2.1.0: {}
|
|
2835
|
+
|
|
2836
|
+
inherits@2.0.3: {}
|
|
2837
|
+
|
|
2838
|
+
inherits@2.0.4: {}
|
|
2839
|
+
|
|
2276
2840
|
is-binary-path@2.1.0:
|
|
2277
2841
|
dependencies:
|
|
2278
2842
|
binary-extensions: 2.3.0
|
|
@@ -2283,6 +2847,10 @@ snapshots:
|
|
|
2283
2847
|
|
|
2284
2848
|
is-extglob@2.1.1: {}
|
|
2285
2849
|
|
|
2850
|
+
is-generator-function@1.0.10:
|
|
2851
|
+
dependencies:
|
|
2852
|
+
has-tostringtag: 1.0.2
|
|
2853
|
+
|
|
2286
2854
|
is-glob@4.0.3:
|
|
2287
2855
|
dependencies:
|
|
2288
2856
|
is-extglob: 2.1.1
|
|
@@ -2307,10 +2875,70 @@ snapshots:
|
|
|
2307
2875
|
|
|
2308
2876
|
json-stable-stringify-without-jsonify@1.0.1: {}
|
|
2309
2877
|
|
|
2878
|
+
keygrip@1.1.0:
|
|
2879
|
+
dependencies:
|
|
2880
|
+
tsscmp: 1.0.6
|
|
2881
|
+
|
|
2310
2882
|
keyv@4.5.4:
|
|
2311
2883
|
dependencies:
|
|
2312
2884
|
json-buffer: 3.0.1
|
|
2313
2885
|
|
|
2886
|
+
koa-bodyparser@4.4.1:
|
|
2887
|
+
dependencies:
|
|
2888
|
+
co-body: 6.2.0
|
|
2889
|
+
copy-to: 2.0.1
|
|
2890
|
+
type-is: 1.6.18
|
|
2891
|
+
|
|
2892
|
+
koa-compose@4.1.0: {}
|
|
2893
|
+
|
|
2894
|
+
koa-convert@2.0.0:
|
|
2895
|
+
dependencies:
|
|
2896
|
+
co: 4.6.0
|
|
2897
|
+
koa-compose: 4.1.0
|
|
2898
|
+
|
|
2899
|
+
koa-send@5.0.1:
|
|
2900
|
+
dependencies:
|
|
2901
|
+
debug: 4.4.3
|
|
2902
|
+
http-errors: 1.8.1
|
|
2903
|
+
resolve-path: 1.4.0
|
|
2904
|
+
transitivePeerDependencies:
|
|
2905
|
+
- supports-color
|
|
2906
|
+
|
|
2907
|
+
koa-static@5.0.0:
|
|
2908
|
+
dependencies:
|
|
2909
|
+
debug: 3.2.7
|
|
2910
|
+
koa-send: 5.0.1
|
|
2911
|
+
transitivePeerDependencies:
|
|
2912
|
+
- supports-color
|
|
2913
|
+
|
|
2914
|
+
koa@2.16.4:
|
|
2915
|
+
dependencies:
|
|
2916
|
+
accepts: 1.3.8
|
|
2917
|
+
cache-content-type: 1.0.1
|
|
2918
|
+
content-disposition: 0.5.4
|
|
2919
|
+
content-type: 1.0.5
|
|
2920
|
+
cookies: 0.9.1
|
|
2921
|
+
debug: 4.4.3
|
|
2922
|
+
delegates: 1.0.0
|
|
2923
|
+
depd: 2.0.0
|
|
2924
|
+
destroy: 1.2.0
|
|
2925
|
+
encodeurl: 1.0.2
|
|
2926
|
+
escape-html: 1.0.3
|
|
2927
|
+
fresh: 0.5.2
|
|
2928
|
+
http-assert: 1.5.0
|
|
2929
|
+
http-errors: 1.8.1
|
|
2930
|
+
is-generator-function: 1.0.10
|
|
2931
|
+
koa-compose: 4.1.0
|
|
2932
|
+
koa-convert: 2.0.0
|
|
2933
|
+
on-finished: 2.4.1
|
|
2934
|
+
only: 0.0.2
|
|
2935
|
+
parseurl: 1.3.3
|
|
2936
|
+
statuses: 1.5.0
|
|
2937
|
+
type-is: 1.6.18
|
|
2938
|
+
vary: 1.1.2
|
|
2939
|
+
transitivePeerDependencies:
|
|
2940
|
+
- supports-color
|
|
2941
|
+
|
|
2314
2942
|
langsmith@0.4.7(openai@6.16.0(ws@8.19.0)(zod@4.3.5)):
|
|
2315
2943
|
dependencies:
|
|
2316
2944
|
'@types/uuid': 10.0.0
|
|
@@ -2339,8 +2967,12 @@ snapshots:
|
|
|
2339
2967
|
|
|
2340
2968
|
math-intrinsics@1.1.0: {}
|
|
2341
2969
|
|
|
2970
|
+
media-typer@0.3.0: {}
|
|
2971
|
+
|
|
2342
2972
|
merge2@1.4.1: {}
|
|
2343
2973
|
|
|
2974
|
+
methods@1.1.2: {}
|
|
2975
|
+
|
|
2344
2976
|
micromatch@4.0.8:
|
|
2345
2977
|
dependencies:
|
|
2346
2978
|
braces: 3.0.3
|
|
@@ -2374,6 +3006,8 @@ snapshots:
|
|
|
2374
3006
|
|
|
2375
3007
|
natural-compare@1.4.0: {}
|
|
2376
3008
|
|
|
3009
|
+
negotiator@0.6.3: {}
|
|
3010
|
+
|
|
2377
3011
|
node-releases@2.0.27: {}
|
|
2378
3012
|
|
|
2379
3013
|
normalize-path@3.0.0: {}
|
|
@@ -2382,10 +3016,18 @@ snapshots:
|
|
|
2382
3016
|
|
|
2383
3017
|
object-hash@3.0.0: {}
|
|
2384
3018
|
|
|
3019
|
+
object-inspect@1.13.4: {}
|
|
3020
|
+
|
|
3021
|
+
on-finished@2.4.1:
|
|
3022
|
+
dependencies:
|
|
3023
|
+
ee-first: 1.1.1
|
|
3024
|
+
|
|
2385
3025
|
only-allow@1.2.2:
|
|
2386
3026
|
dependencies:
|
|
2387
3027
|
which-pm-runs: 1.1.0
|
|
2388
3028
|
|
|
3029
|
+
only@0.0.2: {}
|
|
3030
|
+
|
|
2389
3031
|
openai@6.16.0(ws@8.19.0)(zod@4.3.5):
|
|
2390
3032
|
optionalDependencies:
|
|
2391
3033
|
ws: 8.19.0
|
|
@@ -2423,12 +3065,21 @@ snapshots:
|
|
|
2423
3065
|
dependencies:
|
|
2424
3066
|
callsites: 3.1.0
|
|
2425
3067
|
|
|
3068
|
+
parseurl@1.3.3: {}
|
|
3069
|
+
|
|
2426
3070
|
path-exists@4.0.0: {}
|
|
2427
3071
|
|
|
3072
|
+
path-is-absolute@1.0.1: {}
|
|
3073
|
+
|
|
2428
3074
|
path-key@3.1.1: {}
|
|
2429
3075
|
|
|
2430
3076
|
path-parse@1.0.7: {}
|
|
2431
3077
|
|
|
3078
|
+
path-to-regexp@6.3.0: {}
|
|
3079
|
+
|
|
3080
|
+
pg-cloudflare@1.3.0:
|
|
3081
|
+
optional: true
|
|
3082
|
+
|
|
2432
3083
|
pg-connection-string@2.10.1: {}
|
|
2433
3084
|
|
|
2434
3085
|
pg-int8@1.0.1: {}
|
|
@@ -2454,6 +3105,8 @@ snapshots:
|
|
|
2454
3105
|
pg-protocol: 1.11.0
|
|
2455
3106
|
pg-types: 2.2.0
|
|
2456
3107
|
pgpass: 1.0.5
|
|
3108
|
+
optionalDependencies:
|
|
3109
|
+
pg-cloudflare: 1.3.0
|
|
2457
3110
|
|
|
2458
3111
|
pgpass@1.0.5:
|
|
2459
3112
|
dependencies:
|
|
@@ -2481,12 +3134,13 @@ snapshots:
|
|
|
2481
3134
|
camelcase-css: 2.0.1
|
|
2482
3135
|
postcss: 8.5.6
|
|
2483
3136
|
|
|
2484
|
-
postcss-load-config@6.0.1(jiti@1.21.7)(postcss@8.5.6):
|
|
3137
|
+
postcss-load-config@6.0.1(jiti@1.21.7)(postcss@8.5.6)(tsx@4.21.0):
|
|
2485
3138
|
dependencies:
|
|
2486
3139
|
lilconfig: 3.1.3
|
|
2487
3140
|
optionalDependencies:
|
|
2488
3141
|
jiti: 1.21.7
|
|
2489
3142
|
postcss: 8.5.6
|
|
3143
|
+
tsx: 4.21.0
|
|
2490
3144
|
|
|
2491
3145
|
postcss-nested@6.2.0(postcss@8.5.6):
|
|
2492
3146
|
dependencies:
|
|
@@ -2522,8 +3176,19 @@ snapshots:
|
|
|
2522
3176
|
|
|
2523
3177
|
punycode@2.3.1: {}
|
|
2524
3178
|
|
|
3179
|
+
qs@6.15.0:
|
|
3180
|
+
dependencies:
|
|
3181
|
+
side-channel: 1.1.0
|
|
3182
|
+
|
|
2525
3183
|
queue-microtask@1.2.3: {}
|
|
2526
3184
|
|
|
3185
|
+
raw-body@2.5.3:
|
|
3186
|
+
dependencies:
|
|
3187
|
+
bytes: 3.1.2
|
|
3188
|
+
http-errors: 2.0.1
|
|
3189
|
+
iconv-lite: 0.4.24
|
|
3190
|
+
unpipe: 1.0.0
|
|
3191
|
+
|
|
2527
3192
|
read-cache@1.0.0:
|
|
2528
3193
|
dependencies:
|
|
2529
3194
|
pify: 2.3.0
|
|
@@ -2534,6 +3199,13 @@ snapshots:
|
|
|
2534
3199
|
|
|
2535
3200
|
resolve-from@4.0.0: {}
|
|
2536
3201
|
|
|
3202
|
+
resolve-path@1.4.0:
|
|
3203
|
+
dependencies:
|
|
3204
|
+
http-errors: 1.6.3
|
|
3205
|
+
path-is-absolute: 1.0.1
|
|
3206
|
+
|
|
3207
|
+
resolve-pkg-maps@1.0.0: {}
|
|
3208
|
+
|
|
2537
3209
|
resolve@1.22.11:
|
|
2538
3210
|
dependencies:
|
|
2539
3211
|
is-core-module: 2.16.1
|
|
@@ -2577,20 +3249,60 @@ snapshots:
|
|
|
2577
3249
|
dependencies:
|
|
2578
3250
|
queue-microtask: 1.2.3
|
|
2579
3251
|
|
|
3252
|
+
safe-buffer@5.2.1: {}
|
|
3253
|
+
|
|
3254
|
+
safer-buffer@2.1.2: {}
|
|
3255
|
+
|
|
2580
3256
|
semver@7.7.3: {}
|
|
2581
3257
|
|
|
3258
|
+
setprototypeof@1.1.0: {}
|
|
3259
|
+
|
|
3260
|
+
setprototypeof@1.2.0: {}
|
|
3261
|
+
|
|
2582
3262
|
shebang-command@2.0.0:
|
|
2583
3263
|
dependencies:
|
|
2584
3264
|
shebang-regex: 3.0.0
|
|
2585
3265
|
|
|
2586
3266
|
shebang-regex@3.0.0: {}
|
|
2587
3267
|
|
|
3268
|
+
side-channel-list@1.0.0:
|
|
3269
|
+
dependencies:
|
|
3270
|
+
es-errors: 1.3.0
|
|
3271
|
+
object-inspect: 1.13.4
|
|
3272
|
+
|
|
3273
|
+
side-channel-map@1.0.1:
|
|
3274
|
+
dependencies:
|
|
3275
|
+
call-bound: 1.0.4
|
|
3276
|
+
es-errors: 1.3.0
|
|
3277
|
+
get-intrinsic: 1.3.0
|
|
3278
|
+
object-inspect: 1.13.4
|
|
3279
|
+
|
|
3280
|
+
side-channel-weakmap@1.0.2:
|
|
3281
|
+
dependencies:
|
|
3282
|
+
call-bound: 1.0.4
|
|
3283
|
+
es-errors: 1.3.0
|
|
3284
|
+
get-intrinsic: 1.3.0
|
|
3285
|
+
object-inspect: 1.13.4
|
|
3286
|
+
side-channel-map: 1.0.1
|
|
3287
|
+
|
|
3288
|
+
side-channel@1.1.0:
|
|
3289
|
+
dependencies:
|
|
3290
|
+
es-errors: 1.3.0
|
|
3291
|
+
object-inspect: 1.13.4
|
|
3292
|
+
side-channel-list: 1.0.0
|
|
3293
|
+
side-channel-map: 1.0.1
|
|
3294
|
+
side-channel-weakmap: 1.0.2
|
|
3295
|
+
|
|
2588
3296
|
simple-wcswidth@1.1.2: {}
|
|
2589
3297
|
|
|
2590
3298
|
source-map-js@1.2.1: {}
|
|
2591
3299
|
|
|
2592
3300
|
split2@4.2.0: {}
|
|
2593
3301
|
|
|
3302
|
+
statuses@1.5.0: {}
|
|
3303
|
+
|
|
3304
|
+
statuses@2.0.2: {}
|
|
3305
|
+
|
|
2594
3306
|
strip-json-comments@3.1.1: {}
|
|
2595
3307
|
|
|
2596
3308
|
sucrase@3.35.1:
|
|
@@ -2609,7 +3321,7 @@ snapshots:
|
|
|
2609
3321
|
|
|
2610
3322
|
supports-preserve-symlinks-flag@1.0.0: {}
|
|
2611
3323
|
|
|
2612
|
-
tailwindcss@3.4.19:
|
|
3324
|
+
tailwindcss@3.4.19(tsx@4.21.0):
|
|
2613
3325
|
dependencies:
|
|
2614
3326
|
'@alloc/quick-lru': 5.2.0
|
|
2615
3327
|
arg: 5.0.2
|
|
@@ -2628,7 +3340,7 @@ snapshots:
|
|
|
2628
3340
|
postcss: 8.5.6
|
|
2629
3341
|
postcss-import: 15.1.0(postcss@8.5.6)
|
|
2630
3342
|
postcss-js: 4.1.0(postcss@8.5.6)
|
|
2631
|
-
postcss-load-config: 6.0.1(jiti@1.21.7)(postcss@8.5.6)
|
|
3343
|
+
postcss-load-config: 6.0.1(jiti@1.21.7)(postcss@8.5.6)(tsx@4.21.0)
|
|
2632
3344
|
postcss-nested: 6.2.0(postcss@8.5.6)
|
|
2633
3345
|
postcss-selector-parser: 6.1.2
|
|
2634
3346
|
resolve: 1.22.11
|
|
@@ -2654,6 +3366,8 @@ snapshots:
|
|
|
2654
3366
|
dependencies:
|
|
2655
3367
|
is-number: 7.0.0
|
|
2656
3368
|
|
|
3369
|
+
toidentifier@1.0.1: {}
|
|
3370
|
+
|
|
2657
3371
|
ts-api-utils@2.4.0(typescript@5.9.3):
|
|
2658
3372
|
dependencies:
|
|
2659
3373
|
typescript: 5.9.3
|
|
@@ -2662,10 +3376,24 @@ snapshots:
|
|
|
2662
3376
|
|
|
2663
3377
|
tslib@2.8.1: {}
|
|
2664
3378
|
|
|
3379
|
+
tsscmp@1.0.6: {}
|
|
3380
|
+
|
|
3381
|
+
tsx@4.21.0:
|
|
3382
|
+
dependencies:
|
|
3383
|
+
esbuild: 0.27.2
|
|
3384
|
+
get-tsconfig: 4.13.6
|
|
3385
|
+
optionalDependencies:
|
|
3386
|
+
fsevents: 2.3.3
|
|
3387
|
+
|
|
2665
3388
|
type-check@0.4.0:
|
|
2666
3389
|
dependencies:
|
|
2667
3390
|
prelude-ls: 1.2.1
|
|
2668
3391
|
|
|
3392
|
+
type-is@1.6.18:
|
|
3393
|
+
dependencies:
|
|
3394
|
+
media-typer: 0.3.0
|
|
3395
|
+
mime-types: 2.1.35
|
|
3396
|
+
|
|
2669
3397
|
typescript-eslint@8.53.1(eslint@9.39.2(jiti@1.21.7))(typescript@5.9.3):
|
|
2670
3398
|
dependencies:
|
|
2671
3399
|
'@typescript-eslint/eslint-plugin': 8.53.1(@typescript-eslint/parser@8.53.1(eslint@9.39.2(jiti@1.21.7))(typescript@5.9.3))(eslint@9.39.2(jiti@1.21.7))(typescript@5.9.3)
|
|
@@ -2679,7 +3407,9 @@ snapshots:
|
|
|
2679
3407
|
|
|
2680
3408
|
typescript@5.9.3: {}
|
|
2681
3409
|
|
|
2682
|
-
undici-types@
|
|
3410
|
+
undici-types@6.21.0: {}
|
|
3411
|
+
|
|
3412
|
+
unpipe@1.0.0: {}
|
|
2683
3413
|
|
|
2684
3414
|
update-browserslist-db@1.2.3(browserslist@4.28.1):
|
|
2685
3415
|
dependencies:
|
|
@@ -2695,7 +3425,9 @@ snapshots:
|
|
|
2695
3425
|
|
|
2696
3426
|
uuid@10.0.0: {}
|
|
2697
3427
|
|
|
2698
|
-
|
|
3428
|
+
vary@1.1.2: {}
|
|
3429
|
+
|
|
3430
|
+
vite@7.3.1(@types/node@22.19.15)(jiti@1.21.7)(tsx@4.21.0):
|
|
2699
3431
|
dependencies:
|
|
2700
3432
|
esbuild: 0.27.2
|
|
2701
3433
|
fdir: 6.5.0(picomatch@4.0.3)
|
|
@@ -2704,9 +3436,10 @@ snapshots:
|
|
|
2704
3436
|
rollup: 4.55.3
|
|
2705
3437
|
tinyglobby: 0.2.15
|
|
2706
3438
|
optionalDependencies:
|
|
2707
|
-
'@types/node':
|
|
3439
|
+
'@types/node': 22.19.15
|
|
2708
3440
|
fsevents: 2.3.3
|
|
2709
3441
|
jiti: 1.21.7
|
|
3442
|
+
tsx: 4.21.0
|
|
2710
3443
|
|
|
2711
3444
|
which-pm-runs@1.1.0: {}
|
|
2712
3445
|
|
|
@@ -2720,6 +3453,8 @@ snapshots:
|
|
|
2720
3453
|
|
|
2721
3454
|
xtend@4.0.2: {}
|
|
2722
3455
|
|
|
3456
|
+
ylru@1.4.0: {}
|
|
3457
|
+
|
|
2723
3458
|
yocto-queue@0.1.0: {}
|
|
2724
3459
|
|
|
2725
3460
|
zod@4.3.5: {}
|