-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 1.92 KB
/
Copy pathpackage.json
File metadata and controls
82 lines (82 loc) · 1.92 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "@agentlane/agent-ready",
"version": "0.2.0",
"description": "Make every ticket ready for AI coding agents — a Definition-of-Ready linter.",
"type": "module",
"bin": {
"agent-ready": "dist/cli.js",
"agent-ready-mcp": "dist/mcp/server.js",
"story-lint": "dist/cli.js"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./adapters": {
"types": "./dist/adapters/index.d.ts",
"import": "./dist/adapters/index.js"
},
"./render": {
"types": "./dist/render/index.d.ts",
"import": "./dist/render/index.js"
},
"./types": {
"types": "./dist/types.d.ts",
"import": "./dist/types.js"
},
"./mcp": {
"types": "./dist/mcp/server.d.ts",
"import": "./dist/mcp/server.js"
}
},
"files": [
"dist",
"rule-packs",
"schema",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"start": "node dist/cli.js",
"check:bad": "node dist/cli.js check examples/tickets/bad-ticket.json",
"check:good": "node dist/cli.js check examples/tickets/good-ticket.json",
"test": "node --test test/*.test.js",
"example:sdk": "node examples/sdk/programmatic.mjs"
},
"engines": {
"node": ">=20"
},
"keywords": [
"ai",
"agents",
"sdlc",
"linter",
"definition-of-ready",
"jira",
"github-issues",
"copilot",
"claude-code",
"cursor"
],
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.29.0",
"yaml": "^2.6.0"
},
"devDependencies": {
"@types/node": "^22.9.0",
"typescript": "^5.6.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/agentlane/agent-ready.git"
},
"bugs": {
"url": "https://github.com/agentlane/agent-ready/issues"
},
"homepage": "https://github.com/agentlane/agent-ready#readme"
}