set-prompt 0.6.0 → 0.7.1
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/CHANGELOG.md +32 -0
- package/README.md +51 -36
- package/dist/index.js +575 -141
- package/package.json +8 -3
package/package.json
CHANGED
|
@@ -1,13 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "set-prompt",
|
|
3
|
-
"version": "0.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "0.7.1",
|
|
4
|
+
"description": "One repo. Every AI coding tool. Always in sync.",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"bin": {
|
|
7
7
|
"set-prompt": "./dist/index.js",
|
|
8
8
|
"sppt": "./dist/index.js"
|
|
9
9
|
},
|
|
10
10
|
"type": "module",
|
|
11
|
+
"engines": {
|
|
12
|
+
"node": ">=18"
|
|
13
|
+
},
|
|
11
14
|
"scripts": {
|
|
12
15
|
"start:dev": "tsx src/index.ts",
|
|
13
16
|
"build": "rimraf dist && tsup",
|
|
@@ -25,7 +28,9 @@
|
|
|
25
28
|
"antigravity",
|
|
26
29
|
"openclaw",
|
|
27
30
|
"cursor",
|
|
28
|
-
"codex"
|
|
31
|
+
"codex",
|
|
32
|
+
"opencode",
|
|
33
|
+
"gemini-cli"
|
|
29
34
|
],
|
|
30
35
|
"author": "juncha9 (https://github.com/juncha9)",
|
|
31
36
|
"license": "MIT",
|