-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 1.93 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 1.93 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
71
72
73
74
75
76
77
78
79
{
"name": "branch-nexus",
"version": "1.4.2",
"description": "Multi-branch workspace orchestrator for tmux",
"type": "module",
"bin": {
"branch-nexus": "dist/cli.js"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"typecheck": "tsc --noEmit",
"lint": "eslint ts-src --ext .ts",
"lint:fix": "eslint ts-src --ext .ts --fix",
"format": "prettier --write \"ts-src/**/*.ts\" \"tests/**/*.ts\"",
"format:check": "prettier --check \"ts-src/**/*.ts\" \"tests/**/*.ts\"",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"clean": "rm -rf dist",
"prepublishOnly": "npm run clean && npm run build"
},
"engines": {
"node": ">=18.0.0"
},
"keywords": [
"git",
"tmux",
"worktree",
"cli",
"productivity",
"developer-tools",
"workspace"
],
"author": "BranchNexus Team",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/wkaandemir/branch-nexus.git"
},
"bugs": {
"url": "https://github.com/wkaandemir/branch-nexus/issues"
},
"homepage": "https://github.com/wkaandemir/branch-nexus#readme",
"dependencies": {
"@clack/prompts": "^1.0.1",
"chalk": "^5.3.0",
"commander": "^12.0.0",
"conf": "^13.0.0",
"execa": "^8.0.0",
"inquirer": "^9.2.0",
"ora": "^8.0.0",
"simple-git": "^3.22.0",
"zod": "^3.22.0"
},
"devDependencies": {
"@types/inquirer": "^9.0.0",
"@types/node": "^20.11.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"@vitest/coverage-v8": "^1.2.0",
"eslint": "^8.56.0",
"prettier": "^3.2.0",
"tsup": "^8.0.0",
"typescript": "^5.3.0",
"vitest": "^1.2.0"
}
}