-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.37 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 2.37 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "git-copilot",
"version": "1.0.0",
"description": "Intelligent CLI code collaboration assistant for Git repositories with multi-agent code review",
"type": "module",
"bin": {
"git-copilot": "./dist/cli/index.js"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"format": "prettier --write src",
"typecheck": "tsc --noEmit",
"test": "vitest",
"test:unit": "vitest tests/unit",
"test:integration": "vitest tests/integration",
"test:integration:llm": "vitest tests/integration/llm",
"test:e2e": "playwright test",
"test:coverage": "vitest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lora-sys/git-copilot.git"
},
"keywords": [
"git",
"code-review",
"cli",
"ai",
"llm",
"security",
"static-analysis",
"terminal",
"tui"
],
"author": "git-copilot contributors",
"license": "MIT",
"engines": {
"node": ">=18.0.0"
},
"files": [
"dist",
"skills",
"templates",
"README.md",
"CLAUDE.md",
"git-copilot-PRD-v1.1.md",
"IMPLEMENTATION-PLAN.md"
],
"dependencies": {
"axios": "^1.6.0",
"better-sqlite3": "^12.8.0",
"blessed": "^0.1.81",
"chalk": "^5.3.0",
"cli-progress": "^3.12.0",
"commander": "^12.0.0",
"docx": "^8.5.0",
"exceljs": "^4.4.0",
"ink": "^4.4.1",
"inquirer": "^9.2.0",
"marked": "^11.0.0",
"marked-terminal": "^7.1.1",
"ora": "^8.0.1",
"pdf-lib": "^1.17.1",
"pocketflow": "^1.0.4",
"pptxgenjs": "^3.12.0",
"react": "^18.2.0",
"shiki": "^1.5.0",
"simple-git": "^3.21.0",
"uuid": "^9.0.0",
"winston": "^3.11.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^14.0.0",
"@types/blessed": "^0.1.25",
"@types/node": "^20.0.0",
"@types/react": "^18.2.0",
"@types/uuid": "^9.0.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^10.1.8",
"husky": "^8.0.0",
"ink-testing-library": "^4.0.0",
"jsdom": "^29.0.0",
"lint-staged": "^15.2.0",
"nock": "^13.4.0",
"playwright": "^1.40.0",
"prettier": "^3.1.0",
"typescript": "^5.4.0",
"vitest": "^1.2.0"
}
}