-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 1.88 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 1.88 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
78
79
80
81
{
"name": "branchpilot",
"version": "0.9.4",
"author": "Alec Rust",
"license": "MIT",
"description": "CLI tool for scheduling Pull Requests from local Git branches.",
"repository": {
"type": "git",
"url": "git+https://github.com/AlecRust/branchpilot.git"
},
"homepage": "https://github.com/AlecRust/branchpilot#readme",
"bugs": {
"url": "https://github.com/AlecRust/branchpilot/issues"
},
"type": "module",
"files": [
"dist"
],
"bin": {
"branchpilot": "dist/cli.mjs"
},
"packageManager": "npm@11.11.0",
"engines": {
"node": ">=20.20.0"
},
"scripts": {
"dev": "tsx watch src/cli.ts",
"build": "tsup",
"start": "node dist/cli.mjs",
"format": "biome check --write .",
"typecheck": "tsc --noEmit",
"check": "npm run format && npm run typecheck && npm run knip && markdownlint-cli2 **/*.md",
"test": "vitest run",
"knip": "knip",
"doctor": "node dist/cli.mjs doctor",
"release": "release-it --ci"
},
"keywords": [
"git",
"cli",
"markdown",
"schedule",
"automation",
"pull-request"
],
"dependencies": {
"chokidar": "^4.0.3",
"cli-table3": "^0.6.5",
"commander": "^14.0.3",
"consola": "^3.4.2",
"date-fns": "^4.1.0",
"date-fns-tz": "^3.2.0",
"execa": "^9.6.1",
"gray-matter": "^4.0.3",
"ora": "^9.3.0",
"simple-git": "^3.32.3",
"toml": "^3.0.0",
"which": "^5.0.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@biomejs/biome": "2.4.4",
"@commitlint/cli": "^20.4.2",
"@commitlint/config-conventional": "^20.4.2",
"@commitlint/types": "^20.4.0",
"@release-it/bumper": "^7.0.5",
"@tsconfig/node-lts": "^24.0.0",
"@types/node": "^24.11.0",
"@types/which": "^3.0.4",
"@vitest/coverage-v8": "^3.2.4",
"git-cliff": "^2.12.0",
"knip": "^5.85.0",
"lefthook": "^1.13.6",
"markdownlint-cli2": "^0.21.0",
"release-it": "^19.2.4",
"tsup": "^8.5.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitest": "^3.2.4"
}
}