@gitset-dev/cli 2.0.1 → 2.0.2
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/README.md +1 -1
- package/package.json +7 -8
package/README.md
CHANGED
|
@@ -33,7 +33,7 @@ nowhere else. It never contacts a Gitset server.
|
|
|
33
33
|
npm install -g @gitset-dev/cli
|
|
34
34
|
```
|
|
35
35
|
|
|
36
|
-
Requires Node.js
|
|
36
|
+
Requires Node.js 20+. Commands that publish to GitHub (`--create`,
|
|
37
37
|
`--apply`) use the [GitHub CLI](https://cli.github.com) (`gh`) with your
|
|
38
38
|
existing login.
|
|
39
39
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gitset-dev/cli",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.2",
|
|
4
4
|
"description": "Gitset CLI — drafts commits, PRs, issues, READMEs and release notes with your own AI key. Fully local: your code and keys never touch a Gitset server. Draft. Refine. Ship.",
|
|
5
5
|
"type": "commonjs",
|
|
6
6
|
"bin": {
|
|
@@ -12,15 +12,9 @@
|
|
|
12
12
|
"!lib/__tests__",
|
|
13
13
|
"src/"
|
|
14
14
|
],
|
|
15
|
-
"packageManager": "pnpm@9.15.0",
|
|
16
15
|
"engines": {
|
|
17
16
|
"node": ">=20"
|
|
18
17
|
},
|
|
19
|
-
"scripts": {
|
|
20
|
-
"sync:ai": "node scripts/sync-ai.js",
|
|
21
|
-
"test": "node --test lib/__tests__/*.test.js",
|
|
22
|
-
"start": "node index.js"
|
|
23
|
-
},
|
|
24
18
|
"keywords": [
|
|
25
19
|
"git",
|
|
26
20
|
"cli",
|
|
@@ -50,5 +44,10 @@
|
|
|
50
44
|
},
|
|
51
45
|
"bugs": {
|
|
52
46
|
"url": "https://github.com/gitset-dev/gitset-cli-v2/issues"
|
|
47
|
+
},
|
|
48
|
+
"scripts": {
|
|
49
|
+
"sync:ai": "node scripts/sync-ai.js",
|
|
50
|
+
"test": "node --test lib/__tests__/*.test.js",
|
|
51
|
+
"start": "node index.js"
|
|
53
52
|
}
|
|
54
|
-
}
|
|
53
|
+
}
|