worktree-tool
Version:
A command-line tool for managing Git worktrees with integrated tmux/shell session management
92 lines (91 loc) • 2.64 kB
JSON
{
"name": "worktree-tool",
"version": "1.2.1",
"description": "A command-line tool for managing Git worktrees with integrated tmux/shell session management",
"type": "module",
"main": "./dist/index.js",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"bin": {
"wtt": "./dist/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/apowers313/worktree-tool.git"
},
"bugs": {
"url": "https://github.com/apowers313/worktree-tool/issues"
},
"homepage": "https://github.com/apowers313/worktree-tool#readme",
"scripts": {
"build": "tsc && node scripts/add-shebang.js",
"dev": "tsx src/index.ts",
"test": "npm run test:all",
"test:unit": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:integration": "vitest run -c vitest.config.integration.ts",
"test:e2e": "vitest run -c vitest.config.e2e.ts",
"test:all": "npm run test:unit && npm run test:integration && npm run test:e2e",
"test:ci-local": "./scripts/test-ci-locally.sh",
"typecheck": "tsc --noEmit",
"lint": "eslint src test && tsc --noEmit",
"lint:fix": "eslint src test --fix && tsc --noEmit",
"prepare": "husky",
"prepublishOnly": "npm run build && npm test",
"semantic-release": "semantic-release"
},
"keywords": [
"git",
"worktree",
"development",
"productivity"
],
"author": "apowers313",
"license": "MIT",
"dependencies": {
"chalk": "^5.5.0",
"commander": "^12.0.0",
"simple-git": "^3.28.0"
},
"devDependencies": {
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@eslint/js": "^9.32.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^11.0.3",
"@stylistic/eslint-plugin": "^5.2.2",
"@types/node": "^20.0.0",
"@vitest/coverage-v8": "^3.2.4",
"@vitest/ui": "^3.2.4",
"commitizen": "^4.3.1",
"conventional-changelog-conventionalcommits": "^9.1.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^9.32.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"globals": "^16.3.0",
"husky": "^9.1.7",
"semantic-release": "^24.2.7",
"tsx": "^4.20.3",
"typescript": "^5.0.0",
"typescript-eslint": "^8.38.0",
"vitest": "^3.2.4"
},
"engines": {
"node": ">=18.0.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"publishConfig": {
"access": "public",
"provenance": true
}
}