-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.55 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.55 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
{
"name": "aeo-radar",
"version": "0.1.0",
"description": "Open-source Answer Engine Optimization monitor — track your brand visibility on ChatGPT and other AI answer engines.",
"keywords": [
"aeo",
"answer-engine-optimization",
"seo",
"ai-search",
"llm",
"chatgpt",
"brand-monitoring",
"generative-engine-optimization",
"geo",
"playwright"
],
"homepage": "https://github.com/hellowalt/aeo-radar#readme",
"bugs": {
"url": "https://github.com/hellowalt/aeo-radar/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/hellowalt/aeo-radar.git"
},
"author": {
"name": "Walt",
"url": "https://github.com/hellowalt"
},
"license": "MIT",
"private": false,
"type": "module",
"engines": {
"node": ">=20"
},
"scripts": {
"crawl": "tsx src/cli.ts run",
"analyze": "tsx src/cli.ts analyze",
"seed": "tsx src/cli.ts seed",
"generate-prompts": "tsx src/cli.ts generate-prompts",
"db:push": "prisma db push",
"dashboard": "cd web && npm run dev",
"demo:seed": "tsx scripts/seed-demo.ts",
"demo:reset": "tsx scripts/seed-demo.ts --reset"
},
"dependencies": {
"@prisma/adapter-better-sqlite3": "^7.5.0",
"@prisma/client": "^7.3.0",
"better-sqlite3": "^12.8.0",
"playwright": "^1.52.0",
"playwright-extra": "^4.3.6",
"prisma": "^7.3.0",
"puppeteer-extra-plugin-stealth": "^2.11.2"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^20",
"tsx": "^4.19.0",
"typescript": "^5"
}
}