-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.55 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 1.55 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
{
"name": "@quadbyte/git-conflicts",
"version": "0.0.34",
"description": "Interactive CLI to list and resolve merge conflicts one file at a time with progress tracking.",
"main": "dist/index.js",
"bin": {
"git-conflicts": "./dist/cli.js"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsc",
"test": "jest",
"test:coverage": "jest --coverage --silent --maxWorkers=1",
"test:quick": "jest --maxWorkers=1 --silent",
"test:list": "jest --listTests",
"lint": "eslint src --ext .ts",
"format": "prettier --write \"src/**/*.ts\"",
"prepare": "npm run build"
},
"keywords": [
"git",
"merge",
"conflict",
"cli",
"resolution",
"workflow"
],
"author": "Sulthon",
"license": "MIT",
"dependencies": {
"chalk": "^5.6.2",
"commander": "^15.0.0",
"simple-git": "^3.20.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/jest": "^30.0.0",
"@types/node": "^25.9.3",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"eslint": "^10.5.0",
"jest": "^30.4.2",
"prettier": "^3.8.4",
"ts-jest": "^29.4.11",
"typescript": "^6.0.3"
},
"engines": {
"node": ">=18.0.0"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"exports": {
".": "./dist/index.js",
"./git": "./dist/git.js",
"./resolver": "./dist/resolver.js",
"./progress": "./dist/progress.js"
},
"repository": {
"type": "git",
"url": "https://github.com/quadbyte/git-conflicts.git"
}
}