-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.49 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.49 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
{
"name": "@snipcodeit/mgw",
"version": "0.6.0",
"description": "GitHub-native issue-to-PR automation for Claude Code, powered by Get Shit Done",
"bin": {
"mgw": "./dist/bin/mgw.cjs"
},
"main": "./dist/lib/index.cjs",
"files": [
"dist/",
"bin/mgw-install.cjs",
"commands/",
"completions/",
"templates/"
],
"scripts": {
"build": "pkgroll --clean-dist --src .",
"dev": "pkgroll --watch --src .",
"test": "vitest run",
"test:watch": "vitest",
"test:node": "node --test test/*.test.cjs",
"test:coverage": "vitest run --coverage",
"lint": "eslint lib/ bin/ test/",
"prepublishOnly": "npm run build",
"completions": "node bin/generate-completions.cjs",
"postinstall": "node ./bin/mgw-install.cjs"
},
"dependencies": {
"commander": "^14.0.3"
},
"optionalDependencies": {
"neo-blessed": "^0.2.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@vitest/coverage-v8": "^4.0.18",
"eslint": "^10.0.2",
"pkgroll": "^2.26.3",
"vitest": "^4.0.18"
},
"engines": {
"node": ">=18.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/snipcodeit/mgw.git"
},
"keywords": [
"claude-code",
"github",
"automation",
"project-management",
"gsd",
"cli",
"developer-tools",
"ai"
],
"author": "snipcodeit",
"license": "MIT",
"homepage": "https://github.com/snipcodeit/mgw",
"bugs": {
"url": "https://github.com/snipcodeit/mgw/issues"
}
}