-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.73 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 1.73 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
{
"name": "lockfile-conflicts",
"version": "0.5.2",
"type": "module",
"packageManager": "[email protected]",
"description": "A custom merge driver, aims to handle lockfile conflicts automatically in merge/rebase process.",
"author": "秦旭洋 <[email protected]>",
"license": "MIT",
"bin": {
"lockfile": "./dist/index.js"
},
"files": [
"dist",
"config/*",
"CHANGELOG.md",
"bin/**/foreground"
],
"scripts": {
"prepare": "husky",
"prepublishOnly": "npm run build && npm run build:foreground",
"lint": "oxlint --type-aware --type-check --deny-warnings --fix .",
"build": "tsup",
"watch": "tsup --watch",
"changeset": "changeset",
"versions": "changeset version",
"lint:check": "oxlint --type-aware --type-check --deny-warnings .",
"format": "oxfmt --write .",
"format:check": "oxfmt --check .",
"test:smoke": "pnpm run build && node scripts/smoke.mjs",
"build:foreground": "node native/foreground/build.mjs"
},
"dependencies": {
"commander": "^15.0.0",
"debug": "^4.4.3",
"matcher": "^6.0.0",
"node-cleanup": "^2.1.2",
"update-notifier": "^7.3.1",
"zx": "^8.8.5"
},
"devDependencies": {
"@changesets/cli": "^2.31.0",
"@commitlint/cli": "^21.0.2",
"@commitlint/config-conventional": "^21.0.2",
"@types/fs-extra": "^11.0.4",
"@types/node": "25.9.1",
"husky": "^9.1.7",
"oxfmt": "^0.53.0",
"oxlint": "^1.68.0",
"oxlint-tsgolint": "^0.23.0",
"tsup": "^8.5.1",
"typescript": "^6.0.3"
},
"keywords": [
"git",
"rebase",
"merge",
"lockfile",
"pnpm",
"npm",
"yarn",
"cli",
"driver",
"conflicts",
"automerge",
"monorepo",
"cooperation",
"workflow",
"infra"
]
}