-
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) · 1.6 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.6 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": "dispatch-ai",
"version": "0.1.0-beta.3",
"description": "Dispatch your GitHub issues. Receive pull requests. AI-powered batch issue solver.",
"author": "Mehul Patel <nomadicmehul@gmail.com>",
"license": "Apache-2.0 WITH Commons-Clause",
"type": "module",
"bin": {
"dispatch": "./dist/bin/dispatch.js"
},
"main": "./dist/src/index.js",
"types": "./dist/src/index.d.ts",
"exports": {
".": {
"import": "./dist/src/index.js",
"types": "./dist/src/index.d.ts"
}
},
"files": [
"dist/bin",
"dist/src"
],
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"start": "node dist/bin/dispatch.js",
"lint": "tsc --noEmit",
"test": "node --test dist/test/*.test.js",
"prepublishOnly": "npm run build"
},
"dependencies": {
"@anthropic-ai/claude-code": "^1.0.0",
"@octokit/plugin-retry": "^7.0.0",
"@octokit/plugin-throttling": "^9.0.0",
"@octokit/rest": "^21.0.0",
"chalk": "^5.3.0",
"commander": "^13.0.0",
"inquirer": "^12.0.0",
"openai": "^6.25.0",
"ora": "^8.1.0"
},
"devDependencies": {
"@types/node": "^22.0.0",
"typescript": "^5.7.0"
},
"engines": {
"node": ">=20.0.0"
},
"keywords": [
"github",
"issues",
"pull-requests",
"ai",
"claude",
"gemini",
"github-models",
"automation",
"dispatch",
"cli"
],
"repository": {
"type": "git",
"url": "https://github.com/nomadicmehul/dispatch.git"
},
"bugs": {
"url": "https://github.com/nomadicmehul/dispatch/issues"
},
"homepage": "https://github.com/nomadicmehul/dispatch#readme"
}