-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
580 lines (580 loc) · 22.4 KB
/
package.json
File metadata and controls
580 lines (580 loc) · 22.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
{
"name": "pixelated",
"version": "0.0.1",
"private": true,
"license": "MIT",
"type": "module",
"scripts": {
"bias:py": "ENV=development uv run --python 3.11 python src/lib/ai/bias-detection/python-service/bias_detection_service.py",
"astro": "astro",
"sync": "astro sync",
"dev": "NODE_OPTIONS='--max-old-space-size=8192' astro dev --host 0.0.0.0 --port 5173",
"start": "astro preview --host 0.0.0.0 --port ${WEBSITES_PORT:-4321}",
"start:sentry": "node start-server.mjs",
"preview": "astro preview",
"dev:bias-detection": "PORT=8001 tsx src/lib/ai/bias-detection/server.ts",
"dev:ai-service": "PORT=8002 tsx src/lib/ai/services/server.ts",
"dev:analytics": "tsx src/lib/analytics/server.ts",
"dev:worker": "NODE_ENV=development tsx src/lib/jobs/worker.ts",
"dev:training-server": "NODE_ENV=development tsx src/lib/services/training/server.ts",
"dev:websocket": "NODE_ENV=development tsx src/server.ts",
"dev:academic-sourcing": "ENV=development uv run uvicorn ai.academic_sourcing.api.main:app --host 0.0.0.0 --port 8000 --reload",
"dev:all-services": "concurrently \"pnpm dev\" \"pnpm dev:bias-detection\" \"pnpm dev:ai-service\" \"pnpm dev:analytics\" \"pnpm dev:worker\" \"pnpm dev:training-server\" \"pnpm dev:websocket\" \"pnpm dev:academic-sourcing\" \"pnpm bias:py\"",
"setup:dev": "./scripts/setup-dev.sh",
"jules:setup": "bash scripts/devops/jules-setup.sh",
"jules:check": "git status | grep 'on branch staging' || (echo '❌ ERROR: Jules must work on staging branch' && exit 1) && pnpm check:all",
"hooks:install": "if [ -f scripts/devops/install-git-hooks.sh ]; then bash scripts/devops/install-git-hooks.sh; else echo \"Skipping git hooks install: scripts/devops/install-git-hooks.sh not found.\"; fi",
"prepare": "pnpm run hooks:install",
"build": "CI=true node scripts/ci/build-with-pipe-handling.mjs",
"build:railway": "DEPLOY_TARGET=railway astro build",
"build:heroku": "DEPLOY_TARGET=heroku astro build",
"build:flyio": "DEPLOY_TARGET=flyio astro build",
"build:vercel": "DEPLOY_TARGET=vercel astro build",
"build:analyze": "astro build && pnpm run analyze:bundle",
"analyze:bundle": "npx astro-bundle-analyzer dist",
"format": "oxfmt --write . && prettier --write \"**/*.astro\"",
"format:check": "oxfmt --check . && prettier --check \"**/*.astro\"",
"lint": "oxlint -c .oxlintrc.json .",
"lint:markdown": "pnpm exec markdownlint --config .markdownlint.json \"**/*.md\" \"**/*.mdx\"",
"lint:markdown:staged": "git diff --cached --name-only --diff-filter=ACM -- '*.md' '*.mdx' | xargs -r pnpm exec markdownlint --config .markdownlint.json",
"lint:ci": "oxlint -c .oxlintrc.json . || exit 0",
"lint:fix": "oxlint -c .oxlintrc.json --fix-dangerously .",
"typecheck": "NODE_OPTIONS='--max-old-space-size=8192' astro check && NODE_OPTIONS='--max-old-space-size=8192' tsc --noEmit",
"typecheck:strict": "NODE_OPTIONS='--max-old-space-size=8192' tsx scripts/validate-typescript.ts",
"type-check": "pnpm run typecheck",
"check": "NODE_OPTIONS='--max-old-space-size=8192' astro check",
"check:all": "pnpm run check && pnpm run typecheck",
"test": "node ./scripts/local-test-runner.cjs",
"test:unit": "NODE_ENV=test vitest run -c config/vitest.config.ts --coverage",
"test:integration": "vitest run tests/integration/",
"test:coverage": "NODE_ENV=test vitest run -c config/vitest.config.ts --coverage",
"test:watch": "vitest watch",
"test:all": "node scripts/testing/local-test-runner.cjs",
"test:evals": "uv run pytest -q tests/test_therapy_bench_persistence.py tests/test_similarity_search_standalone.py",
"test:hipaa": "node scripts/consolidated-test.js hipaa",
"test:crypto": "node scripts/consolidated-test.js crypto",
"test:backup": "node scripts/consolidated-test.js backup",
"test:security": "node scripts/consolidated-test.js security",
"test:bias-detection": "vitest run src/lib/ai/bias-detection/ src/components/admin/bias-detection/",
"e2e": "playwright test --config=config/playwright.config.ts",
"e2e:smoke": "playwright test tests/e2e/smoke/ --config=config/playwright.config.ts",
"e2e:browser": "playwright test tests/browser/ --config=config/playwright.config.ts",
"e2e:browser-compat": "playwright test tests/browser-compatibility.spec.ts --config=config/playwright-browser-compat.config.ts",
"e2e:browser-compat-timeout": "bash scripts/browser-compatibility-test.sh",
"e2e:ui": "playwright test --ui-mode --config=config/playwright.config.ts",
"test:e2e": "playwright test --config=config/playwright.config.ts",
"test:e2e-ui": "playwright test --ui --config=config/playwright.config.ts",
"test:smoke": "playwright test tests/e2e/smoke/ --config=config/playwright.config.ts",
"test:e2e:headed": "playwright test --headed --config=config/playwright.config.ts",
"test:e2e:debug": "playwright test --debug --config=config/playwright.config.ts",
"test:e2e:ui": "playwright test --ui --config=config/playwright.config.ts",
"test:e2e:report": "playwright show-report",
"test:e2e:install": "playwright install",
"test:e2e:codegen": "playwright codegen localhost:3000",
"test:e2e:docker": "docker-compose -f docker/docker-compose.playwright.yml run --rm playwright",
"test:e2e:docker:ui": "docker-compose -f docker/docker-compose.playwright.yml run --rm -e PLAYWRIGHT_UI=true playwright pnpm test:e2e-ui",
"test:e2e:docker:setup": "bash scripts/testing/test-playwright-docker.sh",
"mongodb:init": "node scripts/mongodb-init.js",
"mongodb:seed": "node scripts/mongodb-seed.js",
"mongodb:migrate": "node scripts/mongodb-migrate.js",
"redis:check": "node src/lib/services/redis/health-check.js",
"memory:test": "node src/lib/memory/memory-test.js",
"ai:test": "node src/lib/ai/test-ai-services.js",
"fhe:test": "node src/lib/fhe/test-fhe.js",
"backup:test": "node src/lib/backup/backup-test.js",
"merge-datasets:install": "bash ./scripts/install-dataset-deps.sh",
"merge-datasets": "tsx src/lib/ai/datasets/cli.ts",
"prepare-openai": "tsx -e \"import { prepareForOpenAI } from './src/lib/ai/datasets/prepare-fine-tuning'; prepareForOpenAI();\"",
"prepare-huggingface": "tsx -e \"import { prepareForHuggingFace } from './src/lib/ai/datasets/prepare-fine-tuning'; prepareForHuggingFace();\"",
"prepare-all-formats": "tsx -e \"import { prepareAllFormats } from './src/lib/ai/datasets/prepare-fine-tuning'; prepareAllFormats();\"",
"generate-dialogues": "node src/scripts/generate_dialogues.js",
"batch-generate-dialogues": "node src/scripts/batch_generate_dialogues.js",
"validate-dialogues": "node src/scripts/validate_dialogues.js",
"dialogue-pipeline": "node src/scripts/run_full_dialogue_pipeline.js",
"initialize-models": "tsx src/scripts/initialize-cognitive-models.ts",
"security:scan": "bash ./scripts/devops/security-scan.sh",
"security:check": "node scripts/clean-credentials.js --check-only",
"security:fix": "node scripts/clean-credentials.js",
"security:sanitize-logs": "node scripts/sanitize-build-logs.js",
"benchmark": "node scripts/benchmark.js",
"optimize:images": "node scripts/optimize-images.mjs",
"performance:test": "playwright test tests/performance/",
"performance:quick": "./scripts/test-performance.sh",
"performance:optimize": "./scripts/performance-quickstart.sh",
"deploy": "bash scripts/infrastructure/deploy.sh staging",
"deploy:prod": "bash scripts/infrastructure/deploy.sh production",
"rollback": "bash scripts/infrastructure/deploy.sh rollback staging",
"rollback:prod": "bash scripts/infrastructure/deploy.sh rollback production",
"wrangler": "wrangler",
"docker:build": "docker build -f docker/Dockerfile -t pixelated .",
"docker:run": "docker run -p 4321:4321 pixelated",
"docker:up": "bash scripts/infrastructure/deploy.sh",
"docker:down": "docker-compose -f docker/docker-compose.yml down",
"docker:logs": "docker-compose -f docker/docker-compose.yml logs -f",
"docker:restart": "docker-compose -f docker/docker-compose.yml restart",
"docker:reset": "./scripts/reset-dev.sh",
"tags:create": "node scripts/tag-manager.js create",
"tags:list": "node scripts/tag-manager.js list",
"tags:validate": "node scripts/tag-manager.js validate",
"tags:cleanup": "node scripts/tag-manager.js cleanup",
"tags:maintenance": "node scripts/tag-maintenance.js full-maintenance",
"version:release": "node scripts/version-manager.js release",
"version:info": "node scripts/version-manager.js info",
"ts:debug": "./debug-typescript.sh normal",
"ts:debug:verbose": "./debug-typescript.sh verbose",
"ts:debug:minimal": "./debug-typescript.sh minimal",
"ts:debug:clean": "./debug-typescript.sh clean",
"ts:debug:repro": "./debug-typescript.sh repro",
"ts:debug:monitor": "./debug-typescript.sh monitor",
"ts:check:debug": "tsc --noEmit --project config/tsconfig.debug.json",
"ts:check:main": "tsc --noEmit --project config/tsconfig.json",
"ts:check:aws": "tsc --noEmit --project config/tsconfig.aws.json",
"ts:compare": "pnpm run ts:check:debug && echo '✅ Debug config works' && pnpm run ts:check:main && echo '✅ Main config works'",
"ts:switch:debug": "cp config/tsconfig.json config/tsconfig.json.backup && cp config/tsconfig.debug.json config/tsconfig.json",
"ts:switch:main": "cp config/tsconfig.json.backup config/tsconfig.json",
"ts:logs": "echo 'TypeScript logs location varies by system. Run: ./debug-typescript.sh normal'",
"toolbar:on": "astro preferences enable devToolbar",
"toolbar:off": "astro preferences disable devToolbar",
"blog-publisher": "tsx src/lib/scripts/blog-publisher.ts",
"blog": "node scripts/blog-web.js",
"schedule-posts": "node scripts/content/schedule-posts.js",
"mcp:installer": "pnpm exec cursor-mcp-installer-free /workspaces/pixelated",
"mcp:list": "node scripts/mcp-manager.js list",
"mcp:run": "node scripts/mcp-manager.js run",
"mcp:manage": "node scripts/mcp-manager.js"
},
"dependencies": {
"@ai-sdk/anthropic": "^3.0.64",
"@ai-sdk/mcp": "^1.0.30",
"@ai-sdk/openai": "^3.0.48",
"@astrojs/check": "^0.9.8",
"@astrojs/netlify": "^7.0.5",
"@astrojs/node": "^10.0.4",
"@astrojs/react": "^5.0.2",
"@astrojs/vercel": "10.0.3",
"@auth0/auth0-react": "~2.11.0",
"@aws-sdk/client-dynamodb": "^3.1010.0",
"@aws-sdk/client-ec2": "^3.1010.0",
"@aws-sdk/client-eks": "^3.1010.0",
"@aws-sdk/client-kms": "^3.1010.0",
"@aws-sdk/client-rds": "^3.1010.0",
"@aws-sdk/client-s3": "^3.1010.0",
"@aws-sdk/lib-dynamodb": "^3.1010.0",
"@aws-sdk/s3-request-presigner": "^3.1010.0",
"@azure/storage-blob": "^12.31.0",
"@cloudflare/workers-types": "^4.20260316.1",
"@composio/core": "^0.6.7",
"@composio/vercel": "^0.6.7",
"@google-cloud/compute": "^6.8.0",
"@google-cloud/storage": "^7.19.0",
"@hookform/resolvers": "^5.2.2",
"@iconify-json/lucide": "^1.2.100",
"@microsoft/clarity": "^1.0.2",
"@modelcontextprotocol/sdk": "^1.27.1",
"@openai/codex": "^0.116.0",
"@opentelemetry/api": "^1.9.1",
"@opentelemetry/auto-instrumentations-node": "^0.67.3",
"@opentelemetry/context-async-hooks": "^2.6.1",
"@opentelemetry/exporter-metrics-otlp-http": "^0.212.0",
"@opentelemetry/exporter-trace-otlp-grpc": "0.212.0",
"@opentelemetry/exporter-trace-otlp-http": "^0.212.0",
"@opentelemetry/resources": "2.5.1",
"@opentelemetry/sdk-metrics": "^2.6.1",
"@opentelemetry/sdk-node": "^0.212.0",
"@opentelemetry/sdk-trace-base": "2.5.1",
"@opentelemetry/sdk-trace-node": "2.5.1",
"@opentelemetry/semantic-conventions": "^1.40.0",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-tooltip": "^1.2.8",
"@react-three/drei": "^10.7.7",
"@react-three/fiber": "^9.5.0",
"@sentry/astro": "^10.43.0",
"@sentry/node": "^10.43.0",
"@sentry/profiling-node": "^10.43.0",
"@sentry/toolbar": "1.0.0-beta.11",
"@sentry/vite-plugin": "^5.1.1",
"@spotlightjs/astro": "^3.2.6",
"@supermemory/tools": "^1.4.1",
"@tanstack/react-query": "^5.90.21",
"@tensorflow/tfjs": "^4.22.0",
"@tensorflow/tfjs-layers": "^4.22.0",
"@types/jsonwebtoken": "^9.0.10",
"@types/multer": "^2.1.0",
"@types/nodemailer": "^7.0.11",
"@types/three": "^0.182.0",
"@types/ws": "^8.18.1",
"@upstash/ratelimit": "^2.0.8",
"@upstash/redis": "^1.37.0",
"@vercel/analytics": "^2.0.1",
"@vercel/speed-insights": "^2.0.0",
"ai": "^6.0.141",
"archiver": "^7.0.1",
"astro-icon": "^1.1.5",
"auth0": "^5.5.0",
"axios": "^1.13.6",
"bcryptjs": "^3.0.3",
"better-auth": "^1.5.6",
"better-sqlite3": "^12.8.0",
"browserify-zlib": "^0.2.0",
"buffer": "^6.0.3",
"chart.js": "^4.5.1",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"commander": "^14.0.3",
"compression": "^1.8.1",
"cors": "^2.8.6",
"crypto-js": "^4.2.0",
"date-fns": "^4.1.0",
"dayjs": "^1.11.20",
"drizzle-orm": "^0.45.2",
"events": "^3.3.0",
"express": "^5.2.1",
"express-openid-connect": "^2.19.4",
"express-rate-limit": "^8.3.1",
"flexsearch": "^0.8.212",
"framer-motion": "^12.37.0",
"helmet": "^8.1.0",
"ioredis": "^5.10.1",
"jigsawstack": "^0.4.3",
"jotai": "^2.18.1",
"jsonwebtoken": "^9.0.3",
"lucide-react": "^0.562.0",
"mongodb": "^7.1.1",
"mongodb-client-encryption": "^7.0.0",
"multer": "^2.1.1",
"nanoid": "^5.1.7",
"node-cron": "^4.2.1",
"node-seal": "^7.0.0",
"nodemailer": "^8.0.4",
"p5": "^2.2.3",
"path-browserify": "^1.0.1",
"pg": "^8.20.0",
"postgres": "^3.4.8",
"prop-types": "^15.8.1",
"react": "^19.2.4",
"react-chartjs-2": "^5.3.1",
"react-dom": "^19.2.4",
"react-hook-form": "^7.71.2",
"react-hot-toast": "^2.6.0",
"react-router-dom": "^7.13.2",
"recharts": "^3.8.1",
"redis": "^5.11.0",
"rehype-sanitize": "^6.0.0",
"rehype-stringify": "^10.0.1",
"remark": "^15.0.1",
"remark-gfm": "^4.0.1",
"remark-parse": "^11.0.0",
"remark-rehype": "^11.1.2",
"resend": "^6.9.4",
"simple-git": "^3.33.0",
"slug": "^11.0.1",
"socket.io": "^4.8.3",
"socket.io-client": "^4.8.3",
"sonner": "^2.0.7",
"stream-browserify": "^3.0.0",
"swiper": "^12.1.3",
"tailwind-merge": "^3.5.0",
"tar": "^7.5.11",
"three": "^0.182.0",
"three-stdlib": "^2.36.1",
"twilio": "^5.13.1",
"uuid": "^13.0.0",
"vite": "^7.3.1",
"vue": "^3.5.31",
"ws": "^8.20.0",
"zod": "^4.3.6",
"zustand": "^5.0.12"
},
"devDependencies": {
"@astrojs/markdoc": "^1.0.3",
"@astrojs/rss": "^4.0.18",
"@eslint/css": "^1.0.0",
"@eslint/js": "^10.0.1",
"@eslint/json": "^1.1.0",
"@eslint/markdown": "^7.5.1",
"@fontsource/inter": "^5.2.8",
"@iconify-json/ri": "^1.2.10",
"@iconify-json/uil": "^1.2.3",
"@letta-ai/letta-client": "^1.10.1",
"@letta-ai/letta-code-sdk": "^0.1.14",
"@mintlify/cli": "^4.0.1022",
"@playwright/test": "^1.58.2",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/compression": "^1.8.1",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.6",
"@types/mdast": "^4.0.4",
"@types/morgan": "^1.9.10",
"@types/node": "^25.5.0",
"@types/nprogress": "^0.2.3",
"@types/p5": "^1.7.7",
"@types/pg": "8.18.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@types/slug": "^5.0.9",
"@unocss/astro": "^66.6.6",
"@unocss/core": "^66.6.6",
"@unocss/reset": "^66.6.6",
"@vitejs/plugin-react": "^5.2.0",
"@vitest/coverage-v8": "^4.1.0",
"astro": "^6.1.2",
"astro-eslint-parser": "^1.3.0",
"astro-robots-txt": "^1.0.0",
"autoprefixer": "^10.4.27",
"axe-core": "^4.11.1",
"chalk": "^5.6.2",
"cheerio": "^1.2.0",
"class-transformer": "^0.5.1",
"class-validator": "^0.15.1",
"concurrently": "^9.2.1",
"cross-env": "^10.1.0",
"del-cli": "^7.0.0",
"dotenv": "^17.3.1",
"esbuild": "^0.25.12",
"eslint": "^9.39.4",
"eslint-plugin-astro": "^1.6.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-vitest": "^0.5.4",
"eslint-plugin-vitest-globals": "^1.6.1",
"espree": "^11.2.0",
"glob": "^13.0.6",
"globals": "^17.4.0",
"globby": "^16.1.1",
"gray-matter": "^4.0.3",
"hastscript": "^9.0.1",
"hono": "^4.12.8",
"html-entities": "^2.6.0",
"ioredis-mock": "^8.13.1",
"js-base64": "^3.7.8",
"jsdom": "^29.0.0",
"launchdarkly-js-client-sdk": "^3.9.0",
"lint-staged": "^16.4.0",
"markdownlint": "^0.40.0",
"markdownlint-cli": "^0.47.0",
"mcp-remote": "^0.1.38",
"mdast-util-directive": "^3.1.0",
"mdast-util-to-string": "^4.0.0",
"micromatch": "^4.0.8",
"mongodb-memory-server": "^11.0.1",
"msw": "^2.12.11",
"nprogress": "^0.2.0",
"oxc-parser": "^0.107.0",
"oxc-resolver": "^11.19.1",
"oxfmt": "^0.35.0",
"oxlint": "^1.56.0",
"oxlint-tsgolint": "^0.15.0",
"path-to-regexp": "8.3.0",
"postcss": "^8.5.8",
"postcss-import": "^16.1.1",
"postinstall-postinstall": "^2.1.0",
"prettier": "^3.8.1",
"prettier-plugin-astro": "^0.14.1",
"reading-time": "^1.5.0",
"rehype-autolink-headings": "^7.1.0",
"rehype-callouts": "^2.1.2",
"rehype-external-links": "^3.0.0",
"rehype-katex": "^7.0.1",
"remark-code-import": "^1.2.0",
"remark-directive": "^4.0.0",
"remark-imgattr": "^1.1.1",
"remark-math": "^6.0.0",
"remark-toc": "^9.0.0",
"rollup-plugin-visualizer": "^7.0.1",
"satori": "^0.18.4",
"satori-html": "^0.3.2",
"scheduler": "^0.27.0",
"sharp": "^0.34.5",
"shiki": "^4.0.2",
"supertest": "^7.2.2",
"terser": "^5.46.1",
"tsconfig": "^7.0.0",
"tsconfig-paths": "^4.2.0",
"tsx": "^4.21.0",
"tw-animate-css": "^1.4.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.57.1",
"unocss": "^66.6.6",
"url-polyfill": "^1.1.14",
"vfile": "^6.0.3",
"viewerjs": "^1.11.7",
"vite": "7.3.1",
"vite-tsconfig-paths": "^6.1.1",
"vitest": "^4.1.0",
"wait-on": "^9.0.4"
},
"peerDependencies": {
"hono": "^4.12.7"
},
"resolutions": {
"path-to-regexp": "8.3.0"
},
"engines": {
"node": ">=24"
},
"packageManager": "pnpm@10.33.0",
"pnpm": {
"overrides": {
"@opentelemetry/api": "^1.9.0",
"scmp": "2.1.0",
"@opentelemetry/otlp-proto-exporter-base": "^0.51.1",
"@azure/openai": "^2.0.0",
"node-forge": ">=1.4.0",
"picomatch": ">=2.3.2",
"express": ">=4.19.2",
"js-yaml": ">=4.1.1",
"yaml": ">=2.8.3",
"smol-toml": ">=1.6.1",
"@astrojs/vercel": ">=10.0.2",
"brace-expansion": ">=5.0.5",
"tmp": ">=0.2.4",
"glob": "^13.0.0",
"node-domexception": "^2.0.1",
"sitemap": "^9.0.0",
"jws": ">=4.0.1",
"vite": "7.3.1",
"unocss": "^66.5.12",
"@unocss/reset": "^66.5.12",
"@unocss/core": "^66.5.12",
"@unocss/vite": "^66.5.12",
"@unocss/astro": "^66.5.12",
"drizzle-orm": "^0.45.1",
"zod": "^4.3.2",
"fast-xml-parser": ">=5.5.7",
"axios": ">=1.13.5",
"cookie": ">=1.0.3",
"devalue": "^5.6.4",
"yauzl": "^3.2.1",
"minimatch": "^10.2.3",
"@tootallnate/once": "^3.0.1",
"undici": "^7.24.0",
"lodash": "^4.17.23",
"qs": "^6.14.2",
"h3": ">=1.15.9",
"@hono/node-server": "^1.19.10",
"hono": "^4.12.7",
"diff": "^5.2.2",
"wrangler": "^4.59.1",
"kerberos": "^7.0.0",
"esbuild": "^0.25.9",
"tar": "^7.5.7",
"langsmith": ">=0.4.6",
"node-gyp": "^10.0.0",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"socket.io-parser": ">=4.2.6",
"kysely": ">=0.28.14",
"effect": ">=3.20.0"
},
"peerDependencyRules": {
"ignoreMissing": [
"typescript"
],
"allowedVersions": {
"mongodb": "7.0.0",
"eslint": "9",
"drizzle-orm": "0.45.1",
"zod": "*",
"@opentelemetry/api": "*",
"pg": "8.18.0",
"@types/pg": "8.16.0",
"redis": "5.10.0",
"react": "19",
"react-dom": "19",
"@radix-ui/react-popover": "*"
}
},
"allowedDeprecatedVersions": {
"abab": "2.0.6",
"scmp": "2.1.0",
"@vercel/kv": "3.0.0",
"boolean": "*",
"domexception": "4.0.0",
"inflight": "1.0.6",
"lodash.get": "4.4.2",
"@npmcli/move-file": "3.0.0",
"are-we-there-yet": "4.0.2",
"gauge": "5.0.2",
"node-domexception": "*",
"npmlog": "7.0.1",
"querystring": "*",
"@types/ps-list": "6.2.1",
"glob": "7.2.3",
"whatwg-encoding": "3.1.1"
},
"onlyBuiltDependencies": [
"@aws-amplify/cli",
"@contrast/fn-inspect",
"@dwmkerr/terminal-ai",
"@letta-ai/letta-code",
"@modelcontextprotocol/ext-apps",
"@newrelic/native-metrics",
"@parcel/watcher",
"@playwright/browser-chromium",
"@prisma/client",
"@prisma/engines",
"@sentry-internal/node-cpu-profiler",
"@sentry/cli",
"@smithery/cli",
"@vscode/ripgrep",
"agentdb",
"agentic-flow",
"argon2",
"bcrypt",
"better-sqlite3",
"browser-tabs-lock",
"bufferutil",
"core-js",
"cpu-features",
"deno",
"esbuild",
"faiss-node",
"hnswlib-node",
"kerberos",
"keytar",
"libpg-query",
"macos-export-certificate-and-key",
"mongodb-client-encryption",
"mongodb-memory-server",
"msw",
"node-pty",
"onnxruntime-node",
"os-dns-native",
"postinstall-postinstall",
"prisma",
"protobufjs",
"puppeteer",
"sharp",
"sqlite3",
"ssh2",
"tree-sitter",
"tree-sitter-c-sharp",
"tree-sitter-cpp",
"tree-sitter-go",
"tree-sitter-java",
"tree-sitter-javascript",
"tree-sitter-python",
"tree-sitter-rust",
"tree-sitter-scala",
"tree-sitter-typescript",
"unix-dgram",
"unrs-resolver",
"win-export-certificate-and-key",
"workerd"
],
"ignoredBuiltDependencies": [
"libpg-query"
]
},
"trustedDependencies": [
"aws-sdk",
"core-js",
"protobufjs",
"unrs-resolver"
]
}