-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.08 KB
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 1.08 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
{
"name": "reeve",
"version": "0.1.0",
"private": true,
"description": "Reeve — an autonomous GitHub maintainer agent built on Mastra + Gemini.",
"type": "module",
"engines": {
"node": ">=20"
},
"packageManager": "pnpm@11.5.2",
"scripts": {
"typecheck": "tsc --noEmit",
"build": "tsc -p tsconfig.build.json",
"test": "vitest run",
"test:watch": "vitest",
"test:unit": "vitest run --project unit",
"test:integration": "vitest run --project integration",
"eval": "tsx scripts/eval.ts",
"dev": "tsx src/index.ts"
},
"dependencies": {
"@ai-sdk/google": "^2.0.0",
"@mastra/core": "^1.41.0",
"@octokit/plugin-retry": "^8.1.0",
"@octokit/plugin-throttling": "^11.0.3",
"@octokit/request-error": "^7.1.0",
"@octokit/rest": "^22.0.1",
"@octokit/types": "^14.0.0",
"pino": "^9.0.0",
"zod": "^3.25.0",
"zod-to-json-schema": "^3.25.2"
},
"devDependencies": {
"@types/node": "^22.0.0",
"msw": "^2.6.0",
"pino-pretty": "^13.0.0",
"tsx": "^4.19.0",
"typescript": "^5.7.0",
"vitest": "^3.0.0"
}
}