-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 906 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 906 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
{
"name": "@linchpinagency/worktree-utils",
"version": "1.0.20",
"repository": {
"type": "git",
"url": "https://github.com/linchpin/worktree-utils"
},
"description": "A library of CLI commands to help manage jumping between worktrees when developing for WordPress using Studio, LocalWP or wp-env and Agentic workers",
"license": "GPL-2.0-only",
"type": "commonjs",
"bin": {
"linchpin": "bin/linchpin.js"
},
"files": [
"bin",
"src"
],
"scripts": {
"test": "node --test",
"prepare": "husky || true",
"commitlint": "commitlint --edit"
},
"devDependencies": {
"@commitlint/cli": "^20.4.1",
"@commitlint/config-conventional": "^20.4.1",
"husky": "^9.1.7"
},
"engines": {
"node": ">=20"
},
"keywords": [
"git",
"worktree",
"wordpress",
"linchpin"
],
"dependencies": {
"@inquirer/prompts": "^8.2.1"
}
}