-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.17 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.17 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
{
"name": "@kud/git-cherry-pick-interactive-cli",
"version": "1.0.1",
"description": "Interactively cherry-pick commits from another branch.",
"type": "module",
"bin": {
"git-cherry-pick-interactive": "dist/index.js"
},
"files": [
"dist"
],
"engines": {
"node": ">=20"
},
"scripts": {
"build": "tsup",
"dev": "tsx src/index.ts",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"prepublishOnly": "npm run build"
},
"keywords": [
"git",
"cherry-pick",
"cli",
"interactive"
],
"author": "Erwann Mest <m@kud.io>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/kud/git-cherry-pick-interactive-cli.git"
},
"bugs": {
"url": "https://github.com/kud/git-cherry-pick-interactive-cli/issues"
},
"homepage": "https://github.com/kud/git-cherry-pick-interactive-cli#readme",
"publishConfig": {
"access": "public"
},
"dependencies": {
"@inquirer/prompts": "8.5.2",
"chalk": "5.6.2",
"simple-git": "3.36.0"
},
"devDependencies": {
"@types/node": "26.1.1",
"tsup": "8.5.1",
"tsx": "4.23.1",
"typescript": "5.9.3",
"vitest": "4.1.10"
}
}