-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.26 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 2.26 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
{
"name": "@advance-labs/console",
"version": "0.1.0",
"private": true,
"type": "module",
"description": "AEO Toolkit Console — the unified SaaS surface: all tools, MCP endpoints, and the blogging cron in one Next.js app (one Vercel deployment).",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint src",
"typecheck": "tsc --noEmit",
"audit": "node scripts/seo-audit.mjs",
"audit:batch": "node scripts/seo-audit-batch.mjs --targets scripts/targets/london-smb.txt",
"test": "vitest run"
},
"dependencies": {
"@advance-labs/backlinks": "workspace:*",
"@advance-labs/bing-api": "workspace:*",
"@advance-labs/blogging": "workspace:*",
"@advance-labs/crawler": "workspace:*",
"@advance-labs/google-api": "workspace:*",
"@advance-labs/html-parser": "workspace:*",
"@advance-labs/llm": "workspace:*",
"@advance-labs/mcp-core": "workspace:*",
"@advance-labs/net-guard": "workspace:*",
"@advance-labs/orchestrator": "workspace:*",
"@advance-labs/pdf": "workspace:*",
"@advance-labs/schema-validator": "workspace:*",
"@advance-labs/scoring": "workspace:*",
"@advance-labs/storage": "workspace:*",
"@advance-labs/types": "workspace:*",
"@advance-labs/ui": "workspace:*",
"@modelcontextprotocol/sdk": "^1.12.0",
"@react-pdf/renderer": "^4.1.6",
"@react-spring/three": "^10.1.2",
"@react-three/fiber": "^9.7.0",
"@supabase/ssr": "^0.12.0",
"@supabase/supabase-js": "^2.108.1",
"@vercel/analytics": "^2.0.1",
"@vercel/speed-insights": "^2.0.0",
"clsx": "^2.1.1",
"gsap": "^3.15.0",
"lenis": "^1.3.26",
"mcp-handler": "^1.0.1",
"next": "15.5.19",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-force-graph-3d": "^1.26.1",
"shadergradient": "^1.3.5",
"stripe": "^22.2.0",
"tailwind-merge": "^3.6.0",
"three": "^0.171.0",
"zod": "^3.24.1"
},
"devDependencies": {
"@advance-labs/config": "workspace:*",
"@types/node": "^22.10.2",
"@types/react": "^19.0.2",
"@types/react-dom": "^19.0.2",
"@types/three": "^0.171.0",
"autoprefixer": "^10.4.20",
"postcss": "^8.4.49",
"tailwindcss": "^3.4.17",
"typescript": "^5.7.2",
"vitest": "^3.2.6"
}
}