-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.28 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 2.28 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "agent-ready",
"version": "0.2.0",
"description": "Best practices for setting up high-quality GitHub repos for AI coding agents",
"type": "module",
"workspaces": [
"packages/*"
],
"main": "dist/lib.js",
"types": "dist/lib.d.ts",
"bin": {
"agent-ready": "./dist/index.js"
},
"exports": {
".": {
"types": "./dist/lib.d.ts",
"import": "./dist/lib.js"
},
"./cli": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"files": [
"dist",
"profiles",
"templates"
],
"scripts": {
"build": "tsc",
"dev": "tsx src/index.ts",
"test": "tsx --test test/*.test.ts",
"test:coverage": "c8 --reporter=text --reporter=lcov tsx --test test/*.test.ts",
"test:watch": "tsx --test --watch test/*.test.ts",
"lint": "eslint src/ test/",
"lint:fix": "eslint src/ test/ --fix",
"format": "prettier --write src/ test/",
"format:check": "prettier --check src/ test/",
"typecheck": "tsc --noEmit",
"check": "npm run typecheck && npm run lint && npm run format:check",
"prepare": "husky",
"prepublishOnly": "npm run check && npm run build"
},
"lint-staged": {
"*.ts": [
"eslint --fix",
"prettier --write"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/agent-next/agent-ready.git"
},
"homepage": "https://github.com/agent-next/agent-ready#readme",
"bugs": {
"url": "https://github.com/agent-next/agent-ready/issues"
},
"keywords": [
"ai",
"agent",
"readiness",
"scanner",
"factory",
"devops",
"cli",
"maturity"
],
"author": "robotlearning123",
"license": "MIT",
"dependencies": {
"chalk": "^5.3.0",
"commander": "^14.0.3",
"glob": "^13.0.6",
"js-yaml": "^4.1.0",
"pino": "^10.3.1"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"@opentelemetry/api": "^1.9.0",
"@opentelemetry/sdk-trace-node": "^2.5.1",
"@types/js-yaml": "^4.0.9",
"@types/node": "^25.3.3",
"c8": "^10.1.3",
"eslint": "^9.17.0",
"husky": "^9.1.7",
"lint-staged": "^16.3.0",
"prettier": "^3.4.2",
"prom-client": "^15.1.3",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"typescript-eslint": "^8.56.1"
},
"engines": {
"node": ">=20.0.0"
}
}