-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.42 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 2.42 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
{
"name": "diffsentry",
"version": "1.0.0",
"description": "Self-hosted AI-powered PR review bot",
"main": "dist/index.js",
"scripts": {
"build": "npm run build:server && npm run build:web",
"build:server": "tsc",
"build:web": "npm --prefix web ci && npm --prefix web run build",
"build:web:demo": "VITE_FORCE_DEMO=true npm --prefix web run build",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint .",
"start": "node dist/index.js",
"setup": "tsx scripts/setup.ts",
"dev": "tsx watch src/index.ts",
"dev:web": "npm --prefix web run dev",
"e2e": "tsx tests/e2e/cli.ts",
"backfill": "node dist/cli/backfill.js",
"backfill:dev": "tsx src/cli/backfill.ts",
"smoke:dashboard": "tsx scripts/smoke-dashboard.ts",
"smoke:api": "tsx scripts/smoke-api.ts",
"smoke:rbac": "tsx scripts/smoke-rbac.ts",
"smoke:actions": "tsx scripts/smoke-actions.ts",
"smoke:notifications": "tsx scripts/smoke-notifications.ts",
"smoke:branding": "tsx scripts/smoke-branding.ts",
"smoke:settings": "tsx scripts/smoke-settings.ts",
"smoke:tokens": "tsx scripts/smoke-tokens.ts",
"smoke:config": "tsx scripts/smoke-config.ts",
"smoke:learnings": "tsx scripts/smoke-learnings.ts",
"smoke:queue": "tsx scripts/smoke-queue.ts",
"smoke:durable": "tsx scripts/smoke-durable-queue.ts",
"smoke:migrate": "tsx scripts/migrate-smoke.ts",
"smoke:dao": "tsx scripts/smoke-dao.ts",
"smoke:cost": "tsx scripts/smoke-cost.ts",
"smoke:webhooks": "tsx scripts/smoke-webhooks.ts",
"smoke:signature": "tsx scripts/smoke-signature.ts",
"serve:seeded": "tsx scripts/serve-seeded.ts"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.39.0",
"@octokit/auth-app": "^8.2.0",
"@octokit/rest": "^21.1.1",
"@octokit/webhooks": "^13.4.2",
"better-sqlite3": "^11.7.0",
"dotenv": "^17.4.2",
"express": "^4.21.2",
"js-yaml": "^4.1.1",
"marked": "^18.0.2",
"minimatch": "^10.2.5",
"openai": "^4.85.4",
"parse-diff": "^0.11.1",
"pino": "^9.6.0",
"pino-pretty": "^13.0.0"
},
"devDependencies": {
"@eslint/js": "^9.39.4",
"@types/better-sqlite3": "^7.6.12",
"@types/express": "^5.0.0",
"@types/js-yaml": "^4.0.9",
"@types/minimatch": "^5.1.2",
"@types/node": "^22.13.0",
"eslint": "^9.39.4",
"tsx": "^4.19.0",
"typescript": "^5.7.0",
"typescript-eslint": "^8.62.0",
"vitest": "^3.2.6"
}
}