-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.45 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.45 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
{
"name": "ritsu",
"version": "9.1.0",
"ritsu_protocol_version": "9.1.0",
"description": "AI Code Quality Gate \u2014 policy engine, quality gates, session recovery, and agent analytics for AI coding assistants (Claude Code, Codex, Cursor). Catch security issues, scope creep, and contract drift in AI-generated code.",
"packageManager": "bun@1.3.5",
"private": true,
"type": "module",
"scripts": {
"install:all": "bun install --cwd runtime",
"build": "bun run --cwd runtime build",
"build:rust": "cargo build --manifest-path ritsud/Cargo.toml --release",
"build:all": "bun run build && bun run build:rust",
"dev": "bun run --cwd runtime dev",
"lint": "bun run --cwd runtime lint",
"test": "bun run --cwd runtime test",
"test:rust": "cargo test --manifest-path ritsud/Cargo.toml",
"test:all": "bun run test && bun run test:rust",
"doctor": "bun run --cwd runtime dist/cli.js doctor",
"bootstrap": "bun run --cwd runtime dist/cli.js bootstrap"
},
"engines": {
"bun": ">=1.3.0"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/3kaiu/Ritsu.git"
},
"bugs": {
"url": "https://github.com/3kaiu/Ritsu/issues"
},
"homepage": "https://github.com/3kaiu/Ritsu#readme",
"keywords": [
"ai",
"mcp",
"claude-code",
"codex",
"cursor",
"quality-gates",
"code-review",
"policy-engine",
"session-recovery",
"agent-analytics"
]
}