-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.35 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.35 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
{
"name": "agent-ready-scanner",
"version": "0.3.0",
"description": "Command-line client for Agent Ready — scan any URL for AI-readability against the Vercel Agent Readability Spec, the llmstxt.org standard, and agent-protocol manifests. Wraps the agent-ready.dev REST API.",
"license": "MIT",
"author": "Agent Ready",
"repository": {
"type": "git",
"url": "git+https://github.com/mlava/agent-ready-cli.git"
},
"homepage": "https://agent-ready.dev",
"bugs": {
"url": "https://github.com/mlava/agent-ready-cli/issues"
},
"keywords": [
"cli",
"agent-readability",
"ai-search",
"llms-txt",
"agents-md",
"scanner",
"validator",
"vercel-spec",
"seo",
"nlweb"
],
"type": "module",
"engines": {
"node": ">=20.10"
},
"bin": {
"agent-ready": "dist/cli.mjs"
},
"files": [
"dist/cli.mjs",
"README.md",
"LICENSE"
],
"scripts": {
"build": "node scripts/build.mjs",
"dev": "node --experimental-strip-types src/bin.ts",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"@types/node": "^20.11.30",
"@vitest/coverage-v8": "^2.1.9",
"esbuild": "^0.25.8",
"typescript": "^5.9.3",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^2.1.9"
}
}