aeo.js 0.0.1

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/README.md ADDED
@@ -0,0 +1,26 @@
1
+ # aeo.js
2
+
3
+ Answer Engine Optimization for the modern web. Make your site discoverable by AI crawlers and LLMs.
4
+
5
+ > **Status:** Early development. Package name reserved.
6
+
7
+ ## What is AEO?
8
+
9
+ Answer Engine Optimization (AEO) is the practice of making your website discoverable and citable by AI-powered answer engines like ChatGPT, Claude, Perplexity, and SearchGPT.
10
+
11
+ ## Features (coming soon)
12
+
13
+ - **Audit** — Scan any URL and get an AEO score (0-100)
14
+ - **Implement** — Auto-generate `llms.txt`, `robots.txt`, structured data, and AI-friendly endpoints
15
+ - **Widget** — Drop-in UI component showing Human/AI content provenance
16
+ - **Framework support** — Works with Next.js, Vite, Nuxt, Astro, Remix, SvelteKit, Angular, Express, and more
17
+
18
+ ## Install
19
+
20
+ ```bash
21
+ npm install aeo.js
22
+ ```
23
+
24
+ ## License
25
+
26
+ MIT
package/dist/cli.js ADDED
@@ -0,0 +1,2 @@
1
+ #\!/usr/bin/env node
2
+ console.log("aeo.js v0.0.1 — coming soon");
@@ -0,0 +1 @@
1
+ export declare const VERSION = "0.0.1";
package/dist/index.js ADDED
@@ -0,0 +1 @@
1
+ "use strict";Object.defineProperty(exports,"__esModule",{value:true});const VERSION="0.0.1";exports.VERSION=VERSION;
package/dist/index.mjs ADDED
@@ -0,0 +1 @@
1
+ export const VERSION="0.0.1";
package/package.json ADDED
@@ -0,0 +1,61 @@
1
+ {
2
+ "name": "aeo.js",
3
+ "version": "0.0.1",
4
+ "description": "Answer Engine Optimization for the modern web. Make your site discoverable by AI crawlers and LLMs.",
5
+ "main": "dist/index.js",
6
+ "module": "dist/index.mjs",
7
+ "types": "dist/index.d.ts",
8
+ "exports": {
9
+ ".": {
10
+ "import": "./dist/index.mjs",
11
+ "require": "./dist/index.js",
12
+ "types": "./dist/index.d.ts"
13
+ }
14
+ },
15
+ "bin": {
16
+ "aeo": "./dist/cli.js"
17
+ },
18
+ "files": [
19
+ "dist"
20
+ ],
21
+ "scripts": {
22
+ "build": "tsup",
23
+ "dev": "tsup --watch",
24
+ "test": "vitest",
25
+ "prepublishOnly": ""
26
+ },
27
+ "keywords": [
28
+ "aeo",
29
+ "answer-engine-optimization",
30
+ "llm",
31
+ "ai",
32
+ "seo",
33
+ "llms-txt",
34
+ "robots-txt",
35
+ "ai-crawlers",
36
+ "structured-data",
37
+ "json-ld",
38
+ "chatgpt",
39
+ "claude",
40
+ "perplexity",
41
+ "searchgpt",
42
+ "web-optimization",
43
+ "vite",
44
+ "webpack",
45
+ "nextjs",
46
+ "react",
47
+ "vue",
48
+ "angular",
49
+ "svelte"
50
+ ],
51
+ "author": "Ruben Marcus",
52
+ "license": "MIT",
53
+ "repository": {
54
+ "type": "git",
55
+ "url": "https://github.com/rubenmarcus/aeojs"
56
+ },
57
+ "homepage": "https://github.com/rubenmarcus/aeojs#readme",
58
+ "bugs": {
59
+ "url": "https://github.com/rubenmarcus/aeojs/issues"
60
+ }
61
+ }