UNPKG

@baker_kong/commit-helper

Version:

A package to intercept git commit messages and prompt for user input via a GUI application.

63 lines (62 loc) 2 kB
{ "name": "@baker_kong/commit-helper", "version": "0.0.11", "description": "A package to intercept git commit messages and prompt for user input via a GUI application.", "bin": { "@baker_kong/commit-helper": "./bin/commit-helper" }, "scripts": { "start": "concurrently --kill-others-on-fail \"npm run web:dev\" \"npm run electron:dev\"", "web:dev": "vite --mode development", "web:build": "vite build --mode production", "electron:dev": "cross-env NODE_ENV=development electron src/main/index.js", "build": "npm run web:build && cross-env NODE_ENV=production electron-builder --config electron-builder.json", "build:win": "cross-env NODE_ENV=production electron-builder --config electron-builder.json --win", "build:mac": "cross-env NODE_ENV=production electron-builder --config electron-builder.json --mac", "build:all": "npm run web:build && npm run build:win && npm run build:mac", "postinstall": "node ./scripts/install-hooks.js" }, "devDependencies": { "@vitejs/plugin-vue": "^5.0.4", "concurrently": "^9.2.0", "cross-env": "^10.0.0", "electron": "^37.3.1", "electron-builder": "^25.1.8", "element-plus": "^2.10.7", "unplugin-element-plus": "^0.10.0", "vite": "^6.0.1", "vue": "^3.4.27" }, "dependencies": { "electron-log": "^5.4.3", "resolve-pkg": "^2.0.0" }, "repository": { "type": "git", "url": "git+https://github.com/xinfei-fun/CommitHelper.git" }, "keywords": [ "git", "commit", "helper", "hook" ], "author": "Baker Kong", "license": "MIT", "engines": { "node": ">=18.0.0" }, "bugs": { "url": "https://github.com/xinfei-fun/CommitHelper/issues" }, "homepage": "https://github.com/xinfei-fun/CommitHelper#readme", "files": [ "bin/", "hooks/", "scripts/", "commit-helper.json", "dist/web", "dist/app/*.exe", "dist/app/mac-universal" ] }