-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 1.05 KB
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 1.05 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
{
"name": "nodeseo",
"version": "0.1.0",
"description": "NodeSEO: repeatable SEO proof workflow with static audit, Search Console, browser capture, video compression, and Gemini visual judging.",
"type": "module",
"license": "MIT",
"author": "Homen Shum",
"scripts": {
"audit": "tsx src/audit-static.ts",
"perf": "tsx src/performance-check.ts",
"search-console": "tsx src/search-console-report.ts",
"capture:cdp": "tsx src/chrome-cdp-capture.ts",
"frames:video": "tsx src/frames-to-video.ts",
"compress-video": "tsx src/compress-video.ts",
"judge-video": "tsx src/judge-video-gemini.ts",
"journey": "playwright test",
"typecheck": "tsc --noEmit",
"validate": "npm run typecheck && npm run audit -- --config config/seo-workflow.config.example.json --site-root examples/site"
},
"dependencies": {
"@ai-sdk/google": "^3.0.82",
"ai": "^6.0.206",
"zod": "^4.3.6"
},
"devDependencies": {
"@playwright/test": "^1.60.0",
"@types/node": "^22.10.0",
"tsx": "^4.19.2",
"typescript": "^5.7.2"
}
}