-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 2.36 KB
/
package.json
File metadata and controls
105 lines (105 loc) · 2.36 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
97
98
99
100
101
102
103
104
105
{
"name": "@mesadev/saguaro",
"version": "0.4.21",
"description": "AI code review that enforces your team's rules during development",
"license": "Apache-2.0",
"type": "module",
"bin": {
"sag": "dist/cli/bin.js"
},
"main": "./dist/index.js",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"files": [
"dist",
"!dist/**/*.test.*",
"scripts",
"README.md",
"LICENSE",
"CHANGELOG.md"
],
"engines": {
"node": ">=20.0.0"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsc -p tsconfig.json",
"typecheck": "tsc --noEmit",
"test": "bun test",
"lint": "biome check --write .",
"lint:check": "biome check .",
"postinstall": "node scripts/postinstall.cjs || true",
"prepublishOnly": "bun run build",
"brew:verify": "bash scripts/brew-verify.sh"
},
"dependencies": {
"@ai-sdk/anthropic": "^3.0.38",
"@ai-sdk/google": "^3.0.22",
"@ai-sdk/openai": "^3.0.26",
"@modelcontextprotocol/sdk": "^1.26.0",
"@opentui/core": "^0.1.84",
"@opentui/react": "^0.1.84",
"@swc/core": "^1.15.11",
"ai": "^6.0.75",
"better-sqlite3": "^12.6.2",
"boxen": "^5.1.2",
"chalk": "^4.1.2",
"dotenv": "^17.2.4",
"js-yaml": "^4.1.1",
"minimatch": "^10.1.2",
"oxc-resolver": "^11.17.0",
"react": "^19.0.0",
"tree-sitter-wasms": "^0.1.13",
"web-tree-sitter": "0.25.10",
"yaml": "^2.8.2",
"yargs": "^18.0.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@biomejs/biome": "^2.4.6",
"@types/better-sqlite3": "^7.6.13",
"@types/bun": "^1.3.10",
"@types/js-yaml": "^4.0.9",
"@types/node": "^25.2.0",
"@types/react": "^19.0.0",
"@types/yargs": "^17.0.35",
"typescript": "^5.9.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mesa-dot-dev/saguaro.git"
},
"homepage": "https://mesa.dev",
"bugs": {
"url": "https://github.com/mesa-dot-dev/saguaro/issues"
},
"keywords": [
"code-review",
"ai",
"linter",
"saguaro",
"claude",
"rules",
"static-analysis",
"code-quality",
"developer-tools",
"cli",
"devtools",
"lint",
"review",
"coding-agents",
"claude-code",
"codex",
"gemini",
"cursor",
"ai-code-review",
"rules-engine",
"automated-review"
]
}