-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.6 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 2.6 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
{
"name": "@aiready/cli",
"version": "0.15.32",
"description": "The unified CLI for Agentic Readiness. Optimize codebases for AI agents like Cursor, Windsurf, and Claude. Detect semantic duplicates, analyze context fragmentation, and improve agentic leverage.",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"bin": {
"aiready": "./dist/cli.js"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"import": "./dist/index.mjs"
}
},
"files": [
"dist",
"README.md",
"LICENSE",
"CONTRIBUTING.md"
],
"scripts": {
"build": "tsup src/index.ts src/cli.ts --format cjs,esm",
"dev": "tsup src/index.ts src/cli.ts --format cjs,esm --dts --watch",
"test": "vitest run",
"lint": "eslint src",
"clean": "rm -rf dist",
"prepublishOnly": "pnpm build",
"type-check": "tsc --noEmit",
"format-check": "prettier --check . --ignore-path ../../.prettierignore",
"format": "prettier --write . --ignore-path ../../.prettierignore",
"lint:fix": "eslint . --fix",
"test:coverage": "vitest run --coverage"
},
"dependencies": {
"@aiready/agent-grounding": "workspace:*",
"@aiready/ai-signal-clarity": "workspace:*",
"@aiready/change-amplification": "workspace:*",
"@aiready/consistency": "workspace:*",
"@aiready/context-analyzer": "workspace:*",
"@aiready/contract-enforcement": "workspace:*",
"@aiready/core": "workspace:*",
"@aiready/deps": "workspace:*",
"@aiready/doc-drift": "workspace:*",
"@aiready/pattern-detect": "workspace:*",
"@aiready/testability": "workspace:*",
"@aiready/visualizer": "workspace:*",
"chalk": "^5.6.2",
"commander": "^14.0.3"
},
"devDependencies": {
"@types/node": "^24.12.2",
"tsup": "^8.5.1"
},
"keywords": [
"aiready",
"cli",
"Agentic Readiness",
"Model Context Protocol",
"MCP",
"Cursor",
"Windsurf",
"Claude",
"Copilot",
"ai-readiness",
"code-analysis",
"semantic-duplicates",
"context-window",
"agentic-development",
"code-quality",
"static-analysis",
"developer-tools",
"vscode-extension"
],
"author": "AIReady Team",
"license": "MIT",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/caopengau"
},
"repository": {
"type": "git",
"url": "https://github.com/getaiready/aiready-cli.git"
},
"homepage": "https://github.com/getaiready/aiready-cli",
"bugs": {
"url": "https://github.com/getaiready/aiready-cli/issues"
},
"engines": {
"node": ">=18.0.0"
}
}