-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.43 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.43 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
{
"name": "anabranch",
"version": "0.1.0",
"description": "Autonomous AI ticket-to-PR system. Monitors ticketing systems for new tickets, assesses them via AI coding agents, and creates pull requests for trivial tasks.",
"type": "module",
"engines": {
"node": ">=22.0.0"
},
"scripts": {
"build": "tsc",
"start": "node dist/main.js",
"dev": "tsx watch src/main.ts",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint src/",
"typecheck": "tsc --noEmit"
},
"license": "SEE LICENSE IN LICENSE",
"repository": {
"type": "git",
"url": "https://github.com/ErezShahaf/Anabranch.git"
},
"dependencies": {
"@anthropic-ai/claude-agent-sdk": "^0.2.39",
"@nestjs/common": "^11.1.13",
"@nestjs/core": "^11.1.13",
"@nestjs/platform-express": "^11.1.13",
"@octokit/auth-app": "^8.2.0",
"@octokit/rest": "^22.0.1",
"ajv": "^8.17.1",
"js-yaml": "^4.1.1",
"nestjs-pino": "^4.5.0",
"pino": "^10.3.1",
"pino-http": "^11.0.0",
"pino-pretty": "^13.1.3",
"zod": "^4.0.0"
},
"devDependencies": {
"dotenv": "^16.4.5",
"@types/express": "^5.0.6",
"@types/js-yaml": "^4.0.9",
"@types/node": "^25.2.3",
"@typescript-eslint/eslint-plugin": "^8.55.0",
"@typescript-eslint/parser": "^8.55.0",
"eslint": "^9.39.2",
"eslint-plugin-unicorn": "^63.0.0",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
}
}