forked from addyosmani/agentic-seo
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.45 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.45 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
{
"name": "agentic-seo",
"version": "1.0.0",
"description": "Audit your documentation and website for AI agent readiness (Agentic Engine Optimization)",
"type": "module",
"bin": {
"agentic-seo": "./bin/aeo.js"
},
"main": "./src/index.js",
"exports": {
".": "./src/index.js"
},
"scripts": {
"test": "node --test test/**/*.test.js test/checkers/**/*.test.js",
"test:ci": "node --test --test-reporter=spec test/**/*.test.js test/checkers/**/*.test.js",
"lint": "eslint src/ test/",
"prepublishOnly": "npm test"
},
"files": [
"bin/",
"src/",
"templates/"
],
"keywords": [
"agentic-seo",
"aeo",
"agentic-engine-optimization",
"ai-agents",
"documentation",
"audit",
"llms-txt",
"agents-md",
"developer-experience",
"seo",
"cli"
],
"author": "Addy Osmani",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/AEO-Audit/agentic-seo.git"
},
"homepage": "https://github.com/AEO-Audit/agentic-seo#readme",
"bugs": {
"url": "https://github.com/AEO-Audit/agentic-seo/issues"
},
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"chalk": "^5.3.0",
"cheerio": "^1.0.0",
"glob": "^11.0.0",
"gray-matter": "^4.0.3",
"gpt-tokenizer": "^2.8.0",
"ora": "^8.1.0",
"serve-handler": "^6.1.6",
"unified": "^11.0.5",
"remark-parse": "^11.0.0",
"yargs": "^17.7.2"
},
"devDependencies": {}
}