-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.56 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 1.56 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
{
"name": "@mcadam/worktree",
"version": "1.3.1",
"description": "A CLI tool for repository-local Git worktree management",
"main": "dist/cli.js",
"type": "module",
"bin": {
"worktree": "bin/worktree.js"
},
"scripts": {
"build": "tsc",
"dev": "tsx watch src/cli.tsx",
"prepublishOnly": "npm run build",
"test": "node --import tsx --test tests/list.test.ts",
"typecheck": "tsc --noEmit",
"clean": "rm -rf dist",
"lint": "biome check .",
"lint:fix": "biome check --apply .",
"format": "biome format --write ."
},
"keywords": [
"git",
"worktree",
"cli",
"development",
"workflow"
],
"author": "",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/un/worktree.git"
},
"bugs": {
"url": "https://github.com/un/worktree/issues"
},
"homepage": "https://github.com/un/worktree#readme",
"publishConfig": {
"access": "public"
},
"dependencies": {
"chalk": "^5.3.0",
"commander": "^11.1.0",
"execa": "^8.0.1",
"fs-extra": "^11.2.0",
"ink": "^5.2.1",
"ink-select-input": "^6.2.0",
"ink-spinner": "^5.0.0",
"ink-text-input": "^6.0.0",
"ora": "^7.0.1",
"react": "^18.2.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@biomejs/biome": "^1.5.0",
"@types/fs-extra": "^11.0.4",
"@types/node": "^20.10.5",
"@types/react": "^18.2.45",
"tsx": "^4.7.0",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=18.0.0"
},
"packageManager": "pnpm@11.1.3",
"files": [
"dist",
"bin"
]
}