pushai 0.0.3 → 0.0.5
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.
- package/dist/pai.d.ts +1 -0
- package/dist/pai.js +3 -0
- package/dist/pai.js.map +1 -0
- package/package.json +18 -4
package/dist/pai.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
package/dist/pai.js
ADDED
package/dist/pai.js.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/pai.ts"],"sourcesContent":["#!/usr/bin/env node\nconsole.log(\"PushAI CLI is ready!\");\n"],"mappings":";AACA,QAAQ,IAAI,sBAAsB","names":[]}
|
package/package.json
CHANGED
|
@@ -1,16 +1,25 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pushai",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.5",
|
|
4
4
|
"description": "Push AI - AI-powered git commit messages",
|
|
5
|
+
"type": "module",
|
|
5
6
|
"bin": {
|
|
6
|
-
"pai": "./
|
|
7
|
+
"pai": "./bin/pai.js"
|
|
7
8
|
},
|
|
9
|
+
"exports": "./dist/pai.js",
|
|
8
10
|
"files": [
|
|
9
|
-
"
|
|
11
|
+
"dist",
|
|
12
|
+
"bin",
|
|
13
|
+
"package.json"
|
|
10
14
|
],
|
|
15
|
+
"homepage": "https://pushai.vercel.app",
|
|
11
16
|
"scripts": {
|
|
17
|
+
"dev": "tsx watch src/pai.ts",
|
|
18
|
+
"build": "tsup",
|
|
19
|
+
"start": "node dist/pai.js",
|
|
12
20
|
"pushout": "npm publish --access public",
|
|
13
|
-
"pushout:
|
|
21
|
+
"pushout:patch": "npm version patch --no-git-tag-version",
|
|
22
|
+
"pushout:inc": "pnpm build && pnpm run pushout:patch && pnpm run pushout"
|
|
14
23
|
},
|
|
15
24
|
"author": {
|
|
16
25
|
"name": "Holiday",
|
|
@@ -22,5 +31,10 @@
|
|
|
22
31
|
"chalk": "^5.6.2",
|
|
23
32
|
"commander": "^14.0.3",
|
|
24
33
|
"execa": "^9.6.1"
|
|
34
|
+
},
|
|
35
|
+
"devDependencies": {
|
|
36
|
+
"tsup": "^8.5.1",
|
|
37
|
+
"tsx": "^4.21.0",
|
|
38
|
+
"typescript": "^6.0.3"
|
|
25
39
|
}
|
|
26
40
|
}
|