-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 755 Bytes
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 755 Bytes
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
{
"name": "geo-audit",
"version": "1.3.0",
"description": "Scored GEO (Generative Engine Optimization) audit CLI: how ready a site is to be retrieved and cited by AI answer engines.",
"type": "module",
"bin": {
"geo-audit": "./dist/cli.js"
},
"main": "./dist/index.js",
"engines": {
"node": ">=20"
},
"scripts": {
"build": "tsc",
"start": "node dist/cli.js serve",
"test": "vitest run",
"test:watch": "vitest",
"dev": "tsx src/cli.ts"
},
"keywords": [
"geo",
"generative-engine-optimization",
"seo",
"ai",
"audit",
"cli"
],
"license": "MIT",
"devDependencies": {
"@types/node": "^20.14.0",
"tsx": "^4.19.0",
"typescript": "^5.6.0",
"vitest": "^2.1.0"
}
}