-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 1.9 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 1.9 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
{
"name": "cherri",
"description": "Automated cherry-picking for PRs",
"version": "1.6.0",
"main": "dist/index.js",
"license": "MIT",
"files": [
"dist",
"LICENSE",
"README.md"
],
"keywords": [
"cherri",
"cherry-pick",
"cli",
"github",
"backport",
"release",
"hotfix"
],
"bin": {
"cherri": "./dist/index.js"
},
"engines": {
"node": ">=14.0.0",
"bun": ">=1.0.0"
},
"devEngines": {
"runtime": {
"name": "bun",
"onFail": "error"
},
"packageManager": {
"name": "bun",
"onFail": "error"
}
},
"scripts": {
"biome:check": "biome check --write ./src/",
"biome:format": "biome format --write ./src/",
"biome:lint": "biome lint --write ./src/",
"knip": "knip",
"build": "bun build ./src/index.ts --outdir dist --target node --minify --sourcemap",
"test": "bun test",
"test:watch": "bun test --watch",
"test:coverage": "bun test --coverage"
},
"type": "module",
"homepage": "https://github.com/0xr3ngar/cherri",
"repository": {
"type": "git",
"url": "git+https://github.com/0xr3ngar/cherri.git"
},
"bugs": {
"url": "https://github.com/0xr3ngar/cherri/issues"
},
"devDependencies": {
"@biomejs/biome": "^2.2.3",
"@types/bun": "latest",
"@types/node": "^24.3.1",
"knip": "^5.63.1",
"typescript": "^5.9.2"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"dependencies": {
"@inquirer/prompts": "^7.8.4",
"@octokit/rest": "^22.0.0",
"@types/semver": "^7.7.1",
"chalk": "^5.6.2",
"commander": "^14.0.0",
"ora": "^8.2.0",
"semver": "^7.7.2",
"zod": "^4.1.5"
}
}