-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.07 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 2.07 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
{
"name": "bb-plugin-code-review",
"version": "0.1.0",
"type": "module",
"engines": {
"bb": ">=0.40",
"bbPluginSdk": ">=0.4.21"
},
"bb": {
"name": "Code Review",
"description": "List PRs awaiting your review, run your review skills on one, and post the findings comment by comment.",
"branding": {
"icon": "./assets/icon.svg"
},
"server": "./server.ts",
"app": "./app.tsx"
},
"dependencies": {
"@hugeicons/core-free-icons": "^4.1.3",
"@hugeicons/react": "^1.1.6",
"@radix-ui/react-checkbox": "^1.3.7",
"@radix-ui/react-label": "^2.1.15",
"@radix-ui/react-separator": "^1.1.15",
"@radix-ui/react-slot": "^1.3.0",
"@radix-ui/react-tabs": "^1.1.21",
"zod": "^4.3.6"
},
"devDependencies": {
"@get-bb/plugin-sdk": "0.4.21",
"@pierre/diffs": "^1.2.9",
"@radix-ui/react-alert-dialog": "^1.1.19",
"@radix-ui/react-context-menu": "^2.3.3",
"@radix-ui/react-dialog": "^1.1.19",
"@radix-ui/react-dropdown-menu": "^2.1.20",
"@radix-ui/react-hover-card": "^1.1.19",
"@radix-ui/react-menubar": "^1.1.20",
"@radix-ui/react-navigation-menu": "^1.2.18",
"@radix-ui/react-popover": "^1.1.19",
"@radix-ui/react-select": "^2.3.3",
"@radix-ui/react-tooltip": "^1.2.12",
"@testing-library/dom": "^10.4.1",
"@testing-library/react": "^16.3.2",
"@types/better-sqlite3": "^7.6.12",
"@types/node": "^22.0.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@vitest/coverage-v8": "^4.1.11",
"better-sqlite3": "^12.0.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cron-parser": "^5.10.0",
"hono": "^4.11.9",
"jsdom": "^29.1.1",
"react": "^19.2.8",
"react-dom": "^19.2.8",
"sonner": "^1.7.4",
"tailwind-merge": "^3.4.0",
"typescript": "^5.7.0",
"vaul": "^1.1.2",
"vitest": "^4.1.11"
},
"description": "Review GitHub pull requests with agents, then post each finding to GitHub yourself.",
"scripts": {
"build": "bb plugin build",
"typecheck": "tsc --noEmit",
"test": "vitest run"
}
}