-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1014 Bytes
/
package.json
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
{
"name": "worktree-welder",
"version": "1.1.1",
"description": "Utility for git worktrees",
"bin": "./cli.mjs",
"files": [
"dist",
"*.mjs"
],
"type": "module",
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"start": "node cli.mjs",
"check": "tsc --noEmit",
"release": "pnpm run build && changeset publish"
},
"dependencies": {
"@clack/prompts": "0.6.3",
"execa": "7.1.1",
"picocolors": "1.0.0"
},
"devDependencies": {
"@changesets/cli": "2.26.1",
"@tsconfig/esm": "1.0.3",
"@tsconfig/node18": "2.0.1",
"@tsconfig/strictest": "2.0.1",
"@types/node": "20.2.1",
"tsup": "6.7.0",
"typescript": "5.1.3"
},
"homepage": "https://github.com/thenbe/worktree-welder#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/thenbe/worktree-welder.git"
},
"bugs": "https://github.com/thenbe/worktree-welder/issues",
"keywords": [
"git",
"worktree",
"worktrees",
"git-worktree"
],
"author": "thenbe",
"license": "MIT",
"private": false
}