-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.44 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.44 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
64
65
{
"name": "aeoptimize",
"version": "0.5.3",
"description": "CLI toolkit that transforms SEO-optimized websites into AI-search-ready content",
"type": "module",
"main": "./dist/core/index.js",
"bin": {
"aeoptimize": "./dist/cli/index.js",
"aeo": "./dist/cli/index.js",
"aeo-cli": "./dist/cli/index.js"
},
"exports": {
".": "./dist/core/index.js",
"./vite": "./dist/plugins/vite.js",
"./next": "./dist/plugins/next.js"
},
"files": [
"dist/",
"skills/",
"agents/",
".claude-plugin/",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"test": "vitest run",
"test:watch": "vitest",
"prepublishOnly": "npm test && npm run build"
},
"keywords": [
"aeo",
"seo",
"ai-search",
"llms-txt",
"structured-data",
"json-ld",
"generative-engine-optimization",
"claude-code-skill",
"vite-plugin",
"nextjs-plugin"
],
"homepage": "https://github.com/dexuwang627-cloud/aeoptimize",
"repository": {
"type": "git",
"url": "https://github.com/dexuwang627-cloud/aeoptimize.git"
},
"license": "MIT",
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"chalk": "^5.3.0",
"puppeteer-core": "^24.0.0",
"cheerio": "^1.0.0",
"commander": "^12.0.0",
"gray-matter": "^4.0.3"
},
"devDependencies": {
"@types/node": "^20.0.0",
"typescript": "^5.4.0",
"vitest": "^2.0.0"
}
}