-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 2.19 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 2.19 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": "@eshen_fox_mie/agent-ready",
"version": "0.1.25",
"description": "Make any repository ready for AI coding agents in 60 seconds.",
"type": "module",
"bin": {
"agent-ready": "bin/agent-ready.mjs"
},
"files": [
"bin",
"src",
"action.yml",
"README.md",
"LICENSE",
"CHANGELOG.md",
"BENCHMARK.md",
"docs",
"CONTRIBUTING.md",
"CODE_OF_CONDUCT.md",
"SECURITY.md",
"LAUNCH.md",
"AGENTS.md",
"CLAUDE.md",
"GEMINI.md",
"scripts",
".cursor/rules/agent-ready.mdc",
".github/copilot-instructions.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/EShener/agent-ready.git"
},
"homepage": "https://github.com/EShener/agent-ready#readme",
"bugs": {
"url": "https://github.com/EShener/agent-ready/issues"
},
"scripts": {
"test": "node --test test/*.test.mjs",
"lint": "npm run check",
"check": "node --check bin/agent-ready.mjs && node --check scripts/benchmark-sample.mjs && node --check scripts/outreach-operator.mjs && node --check src/benchmark.mjs && node --check src/ci.mjs && node --check src/cli.mjs && node --check src/comment.mjs && node --check src/compare.mjs && node --check src/config.mjs && node --check src/examples.mjs && node --check src/explainer.mjs && node --check src/generator.mjs && node --check src/improver.mjs && node --check src/interactive.mjs && node --check src/linter.mjs && node --check src/matrix.mjs && node --check src/outreach.mjs && node --check src/outreach-operator.mjs && node --check src/presets.mjs && node --check src/reporter.mjs && node --check src/scanner.mjs && node --check src/snapshot.mjs && node --check src/workflow.mjs",
"outreach:operator": "node scripts/outreach-operator.mjs",
"benchmark:fixtures": "node bin/agent-ready.mjs benchmark test/fixtures/node-app test/fixtures/bad-agent-docs",
"benchmark:sample": "node scripts/benchmark-sample.mjs"
},
"engines": {
"node": ">=20"
},
"keywords": [
"ai-agents",
"agentic-coding",
"agents-md",
"codex",
"claude-code",
"cursor",
"gemini-cli",
"copilot",
"developer-tools",
"cli",
"github-copilot",
"mcp"
],
"license": "MIT"
}