pushai 0.0.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1) hide show
  1. package/package.json +26 -0
package/package.json ADDED
@@ -0,0 +1,26 @@
1
+ {
2
+ "name": "pushai",
3
+ "version": "0.0.3",
4
+ "description": "Push AI - AI-powered git commit messages",
5
+ "bin": {
6
+ "pai": "./cli.js"
7
+ },
8
+ "files": [
9
+ "cli.js"
10
+ ],
11
+ "scripts": {
12
+ "pushout": "npm publish --access public",
13
+ "pushout:inc": "npm version patch --no-git-tag-version && pnpm run pushout"
14
+ },
15
+ "author": {
16
+ "name": "Holiday",
17
+ "url": "https://thelastofinusa.vercel.app"
18
+ },
19
+ "license": "MIT",
20
+ "dependencies": {
21
+ "@inquirer/prompts": "^8.4.3",
22
+ "chalk": "^5.6.2",
23
+ "commander": "^14.0.3",
24
+ "execa": "^9.6.1"
25
+ }
26
+ }