aiseo-audit 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +269 -0
- package/bin/aiseo-audit.js +2 -0
- package/dist/cli.d.mts +2 -0
- package/dist/cli.d.ts +2 -0
- package/dist/cli.js +2629 -0
- package/dist/cli.mjs +2605 -0
- package/dist/index.d.mts +442 -0
- package/dist/index.d.ts +442 -0
- package/dist/index.js +2592 -0
- package/dist/index.mjs +2553 -0
- package/package.json +98 -0
package/package.json
ADDED
|
@@ -0,0 +1,98 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "aiseo-audit",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "Lighthouse for AI SEO. Audit any webpage for AI search readiness. 7 categories, 30+ factors, research-backed scoring. Deterministic, engine-agnostic, zero API keys.",
|
|
5
|
+
"main": "./dist/index.js",
|
|
6
|
+
"module": "./dist/index.mjs",
|
|
7
|
+
"types": "./dist/index.d.ts",
|
|
8
|
+
"exports": {
|
|
9
|
+
".": {
|
|
10
|
+
"types": "./dist/index.d.ts",
|
|
11
|
+
"import": "./dist/index.mjs",
|
|
12
|
+
"require": "./dist/index.js"
|
|
13
|
+
}
|
|
14
|
+
},
|
|
15
|
+
"bin": {
|
|
16
|
+
"aiseo-audit": "./bin/aiseo-audit.js"
|
|
17
|
+
},
|
|
18
|
+
"files": [
|
|
19
|
+
"dist",
|
|
20
|
+
"!dist/*.map",
|
|
21
|
+
"bin",
|
|
22
|
+
"README.md",
|
|
23
|
+
"LICENSE"
|
|
24
|
+
],
|
|
25
|
+
"scripts": {
|
|
26
|
+
"build": "tsup",
|
|
27
|
+
"dev": "tsup --watch",
|
|
28
|
+
"test": "vitest run",
|
|
29
|
+
"test:watch": "vitest",
|
|
30
|
+
"test:coverage": "vitest run --coverage",
|
|
31
|
+
"lint": "tsc --noEmit",
|
|
32
|
+
"format:check": "prettier --check .",
|
|
33
|
+
"ci": "npm run format:check && npm run lint && npm run test:coverage && npm run build",
|
|
34
|
+
"prepublishOnly": "npm run build"
|
|
35
|
+
},
|
|
36
|
+
"repository": {
|
|
37
|
+
"type": "git",
|
|
38
|
+
"url": "git+https://github.com/agencyenterprise/aiseo-audit.git"
|
|
39
|
+
},
|
|
40
|
+
"homepage": "https://github.com/agencyenterprise/aiseo-audit#readme",
|
|
41
|
+
"bugs": {
|
|
42
|
+
"url": "https://github.com/agencyenterprise/aiseo-audit/issues"
|
|
43
|
+
},
|
|
44
|
+
"author": "Agency Enterprise",
|
|
45
|
+
"license": "MIT",
|
|
46
|
+
"engines": {
|
|
47
|
+
"node": ">=20",
|
|
48
|
+
"npm": ">=10"
|
|
49
|
+
},
|
|
50
|
+
"keywords": [
|
|
51
|
+
"ai-seo",
|
|
52
|
+
"aiseo",
|
|
53
|
+
"aiseo-audit",
|
|
54
|
+
"geo",
|
|
55
|
+
"generative-engine-optimization",
|
|
56
|
+
"ai-readiness",
|
|
57
|
+
"ai-audit",
|
|
58
|
+
"ai-search",
|
|
59
|
+
"ai-optimization",
|
|
60
|
+
"llm",
|
|
61
|
+
"chatgpt",
|
|
62
|
+
"claude",
|
|
63
|
+
"perplexity",
|
|
64
|
+
"gemini",
|
|
65
|
+
"ai-overview",
|
|
66
|
+
"content-audit",
|
|
67
|
+
"content-analysis",
|
|
68
|
+
"seo",
|
|
69
|
+
"nlp",
|
|
70
|
+
"structured-data",
|
|
71
|
+
"schema-org",
|
|
72
|
+
"json-ld",
|
|
73
|
+
"llms-txt",
|
|
74
|
+
"robots-txt",
|
|
75
|
+
"lighthouse",
|
|
76
|
+
"cli",
|
|
77
|
+
"audit",
|
|
78
|
+
"readability",
|
|
79
|
+
"web-audit",
|
|
80
|
+
"aeo",
|
|
81
|
+
"answer-engine-optimization"
|
|
82
|
+
],
|
|
83
|
+
"dependencies": {
|
|
84
|
+
"chalk": "^5.6.2",
|
|
85
|
+
"cheerio": "^1.2.0",
|
|
86
|
+
"commander": "^14.0.3",
|
|
87
|
+
"compromise": "^14.14.5",
|
|
88
|
+
"zod": "^4.3.6"
|
|
89
|
+
},
|
|
90
|
+
"devDependencies": {
|
|
91
|
+
"@types/node": "^25.2.3",
|
|
92
|
+
"@vitest/coverage-v8": "^4.0.18",
|
|
93
|
+
"prettier": "^3.8.1",
|
|
94
|
+
"tsup": "^8.5.1",
|
|
95
|
+
"typescript": "^5.9.3",
|
|
96
|
+
"vitest": "^4.0.18"
|
|
97
|
+
}
|
|
98
|
+
}
|