@agentimization/core 0.1.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/package.json ADDED
@@ -0,0 +1,58 @@
1
+ {
2
+ "name": "@agentimization/core",
3
+ "version": "0.1.0",
4
+ "description": "GEO audit engine. Check if your website is agent-ready and generative-engine optimized.",
5
+ "keywords": [
6
+ "geo",
7
+ "seo",
8
+ "llm",
9
+ "ai",
10
+ "agent-ready",
11
+ "llms-txt",
12
+ "generative-engine",
13
+ "audit"
14
+ ],
15
+ "homepage": "https://github.com/antlio/agentimization",
16
+ "license": "MIT",
17
+ "author": "Anthony Lio <hello@antl.io>",
18
+ "repository": {
19
+ "type": "git",
20
+ "url": "https://github.com/antlio/agentimization",
21
+ "directory": "packages/core"
22
+ },
23
+ "type": "module",
24
+ "main": "./dist/index.js",
25
+ "types": "./dist/index.d.ts",
26
+ "exports": {
27
+ ".": {
28
+ "types": "./dist/index.d.ts",
29
+ "import": "./dist/index.js"
30
+ }
31
+ },
32
+ "files": [
33
+ "dist",
34
+ "README.md",
35
+ "LICENSE"
36
+ ],
37
+ "scripts": {
38
+ "build": "tsup",
39
+ "dev": "tsup --watch",
40
+ "test": "vitest run",
41
+ "test:watch": "vitest",
42
+ "typecheck": "tsc --noEmit",
43
+ "prepublishOnly": "bun run build && cp -f ../../README.md ./README.md && cp -f ../../LICENSE ./LICENSE"
44
+ },
45
+ "dependencies": {
46
+ "zod": "^3.23.0"
47
+ },
48
+ "devDependencies": {
49
+ "@agentimization/shared": "file:../shared",
50
+ "@types/node": "^22.0.0",
51
+ "tsup": "^8.5.1",
52
+ "typescript": "^5.7.0",
53
+ "vitest": "^3.0.0"
54
+ },
55
+ "engines": {
56
+ "node": ">=18"
57
+ }
58
+ }