forked from DGouron/review-flow
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.05 KB
/
Copy pathpackage.json
File metadata and controls
83 lines (83 loc) · 2.05 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
{
"name": "reviewflow",
"version": "3.3.0",
"description": "AI-powered code review automation for GitLab/GitHub using Claude Code",
"type": "module",
"main": "dist/main/server.js",
"bin": {
"reviewflow": "dist/main/cli.js"
},
"license": "MIT",
"author": "Damien Gouron",
"repository": {
"type": "git",
"url": "https://github.com/DGouron/review-flow.git"
},
"bugs": {
"url": "https://github.com/DGouron/review-flow/issues"
},
"homepage": "https://github.com/DGouron/review-flow#readme",
"files": [
"dist/",
"templates/",
"scripts/",
"README.md",
"LICENSE",
"CHANGELOG.md"
],
"keywords": [
"code-review",
"claude",
"ai",
"webhook",
"gitlab",
"github",
"merge-request",
"pull-request",
"automation",
"reviewflow"
],
"scripts": {
"dev": "tsx watch src/main/cli.ts start --skip-dependency-check",
"build": "tsc && node scripts/copyAssets.mjs",
"start": "node dist/main/cli.js start",
"typecheck": "tsc --noEmit",
"test": "vitest",
"test:ui": "vitest --ui",
"test:ci": "vitest --run",
"coverage": "vitest --coverage",
"lint": "biome check src/",
"lint:fix": "biome check --write src/",
"verify": "yarn typecheck && yarn lint && yarn test:ci",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs"
},
"dependencies": {
"@fastify/static": "^8.0.0",
"@fastify/websocket": "^11.0.0",
"@inquirer/prompts": "^8.2.0",
"@modelcontextprotocol/sdk": "^1.26.0",
"dotenv": "^16.4.0",
"fastify": "^5.0.0",
"p-queue": "^8.0.0",
"pino": "^8.18.0",
"pino-pretty": "^10.3.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@biomejs/biome": "^1.9.0",
"@types/node": "^20.0.0",
"@types/ws": "^8.18.1",
"@vitest/coverage-v8": "^4.0.18",
"@vitest/ui": "^4.0.18",
"tsx": "^4.7.0",
"typescript": "^5.8.0",
"vitepress": "^1.6.4",
"vitest": "^4.0.18",
"vue": "^3.5.27"
},
"engines": {
"node": ">=20.0.0"
}
}