forked from johnlindquist/worktree-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.49 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.49 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
{
"name": "@johnlindquist/worktree",
"version": "0.0.0-development",
"packageManager": "pnpm@9.5.0",
"description": "A CLI tool for managing Git worktrees with a focus on opening them in the Cursor editor.",
"author": "John Lindquist <johnlindquist@gmail.com>",
"license": "MIT",
"type": "module",
"bin": {
"wt": "build/index.js"
},
"scripts": {
"build": "tsc",
"postbuild": "node -e \"const fs = require('fs'); try { fs.chmodSync('build/index.js', 0o755); } catch (e) { if (process.platform !== 'win32') throw e; }\"",
"start": "node build/index.js",
"dev": "tsc -w",
"test": "vitest run",
"semantic-release": "semantic-release"
},
"dependencies": {
"chalk": "^5.2.0",
"commander": "^10.0.1",
"conf": "^13.1.0",
"execa": "^7.1.1",
"ora": "^9.0.0",
"prompts": "^2.4.2"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^11.1.0",
"@semantic-release/github": "^9.2.6",
"@semantic-release/npm": "^11.0.2",
"@semantic-release/release-notes-generator": "^12.1.0",
"@types/node": "^18.0.0",
"@types/prompts": "^2.4.9",
"@vitest/coverage-v8": "^3.1.1",
"semantic-release": "^23.0.2",
"typescript": "^5.0.2",
"vitest": "^3.1.1"
},
"release": {
"branches": [
"main"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/npm",
"@semantic-release/github"
]
},
"publishConfig": {
"access": "public"
},
"files": [
"build"
]
}