almightygpt 0.2.0 → 0.2.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.
Files changed (2) hide show
  1. package/dist/index.js +1 -1
  2. package/package.json +3 -3
package/dist/index.js CHANGED
@@ -15,7 +15,7 @@ program
15
15
  .name("almightygpt")
16
16
  .description("The convention and tooling for multi-AI development. " +
17
17
  "One AI writes, another AI reviews.")
18
- .version("0.2.0");
18
+ .version("0.2.1");
19
19
  program.addCommand(createInitCommand());
20
20
  program.addCommand(createReviewCommand());
21
21
  program.addCommand(createRunsCommand());
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "almightygpt",
3
- "version": "0.2.0",
3
+ "version": "0.2.1",
4
4
  "description": "AlmightyGPT CLI — the convention and tooling for multi-AI development",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -18,8 +18,8 @@
18
18
  "watch": "tsc -p tsconfig.json --watch"
19
19
  },
20
20
  "dependencies": {
21
- "@almightygpt/core": "*",
22
- "@almightygpt/templates": "*",
21
+ "@almightygpt/core": "^0.2.0",
22
+ "@almightygpt/templates": "^0.2.0",
23
23
  "chalk": "^5.3.0",
24
24
  "commander": "^12.0.0"
25
25
  },