From 6267e7f052d2adc32904e44b80ba50ec81cf85bf Mon Sep 17 00:00:00 2001 From: "Calvin A. Allen" Date: Fri, 2 Jan 2026 15:18:29 -0500 Subject: [PATCH] chore: add package.json for husky support Adds package.json with husky and commitlint dependencies to enable the existing .husky/commit-msg hook to function properly. --- package.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 package.json diff --git a/package.json b/package.json new file mode 100644 index 0000000..305c9d9 --- /dev/null +++ b/package.json @@ -0,0 +1,14 @@ +{ + "name": "vs-gitranger", + "version": "0.0.0", + "private": true, + "description": "Development dependencies for VS-GitRanger - conventional commits tooling", + "scripts": { + "prepare": "husky" + }, + "devDependencies": { + "@commitlint/cli": "^19.0.0", + "@commitlint/config-conventional": "^19.0.0", + "husky": "^9.0.0" + } +}