-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 882 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 882 Bytes
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
{
"name": "ticket-solver",
"version": "1.0.0",
"description": "Agent that reads Jira bug tickets, analyzes the GitHub codebase with Claude, and posts solutions to Slack",
"type": "module",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "ts-node-dev --respawn --transpile-only src/index.ts",
"type-check": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.52.0",
"fastify-raw-body": "^5.0.0",
"@octokit/rest": "^21.0.0",
"@slack/web-api": "^7.0.0",
"dotenv": "^16.0.0",
"fastify": "^5.0.0"
},
"devDependencies": {
"@types/node": "^20.0.0",
"@vitest/coverage-v8": "^3.0.0",
"ts-node-dev": "^2.0.0",
"typescript": "^5.0.0",
"vitest": "^3.0.0"
}
}