-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1016 Bytes
/
package.json
File metadata and controls
46 lines (46 loc) · 1016 Bytes
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
{
"name": "stack-branches",
"version": "1.0.0",
"description": "Aviator-inspired CLI tool for managing stacked git branches",
"main": "dist/index.js",
"bin": {
"stack-branches": "./dist/cli.js",
"sb": "./dist/cli.js"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"start": "node dist/cli.js",
"test": "vitest",
"lint": "eslint src/**/*.ts",
"typecheck": "tsc --noEmit"
},
"keywords": [
"git",
"stacked-branches",
"aviator",
"cli",
"typescript"
],
"author": "",
"license": "MIT",
"type": "module",
"engines": {
"node": ">=16.0.0"
},
"dependencies": {
"chalk": "^5.6.2",
"commander": "^14.0.0",
"simple-git": "^3.28.0"
},
"devDependencies": {
"@eslint/js": "^9.35.0",
"@types/node": "^24.3.1",
"@typescript-eslint/eslint-plugin": "^8.43.0",
"@typescript-eslint/parser": "^8.43.0",
"@vitest/ui": "^3.2.4",
"eslint": "^9.35.0",
"typescript": "^5.9.2",
"vitest": "^3.2.4"
}
}