generated from emosheeep/cli-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.69 KB
/
package.json
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
{
"name": "lockfile-conflicts",
"version": "0.3.0",
"type": "module",
"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"
],
"scripts": {
"prepare": "husky install",
"prepublishOnly": "npm run build",
"lint": "eslint . --fix --ext .js,.ts",
"build": "tsup",
"watch": "tsup --watch",
"changeset": "changeset",
"versions": "changeset version"
},
"dependencies": {
"commander": "^12.1.0",
"debug": "^4.3.5",
"matcher": "^5.0.0",
"node-cleanup": "^2.1.2",
"typescript": "^5.4.5",
"update-notifier": "^7.0.0",
"zx": "^8.1.2"
},
"devDependencies": {
"@changesets/cli": "^2.27.5",
"@commitlint/cli": "^18.6.1",
"@commitlint/config-conventional": "^18.6.3",
"@types/node": "^20.14.2",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard": "^17.1.0",
"eslint-define-config": "^2.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-promise": "^6.2.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.7",
"prettier": "^3.3.2",
"tsup": "^8.1.0"
},
"keywords": [
"git",
"rebase",
"merge",
"lockfile",
"pnpm",
"npm",
"yarn",
"cli",
"driver",
"conflicts",
"automerge",
"monorepo",
"cooperation",
"workflow",
"infra"
]
}