inplan 0.1.0 → 0.1.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/bin/cli.js +1 -1
  2. package/package.json +6 -1
package/bin/cli.js CHANGED
@@ -866,7 +866,7 @@ function waitForActions(opts) {
866
866
  }
867
867
 
868
868
  // src/cli.ts
869
- var VERSION = "0.1.0";
869
+ var VERSION = "0.1.1";
870
870
  function output(obj) {
871
871
  process.stdout.write(JSON.stringify(obj) + "\n");
872
872
  }
package/package.json CHANGED
@@ -1,8 +1,13 @@
1
1
  {
2
2
  "name": "inplan",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "inplan — a Markdown editor for human ⇄ coding-agent planning. CLI + desktop editor.",
5
5
  "license": "AGPL-3.0-or-later",
6
+ "repository": {
7
+ "type": "git",
8
+ "url": "git+https://github.com/melly-lgtm/inplan.git"
9
+ },
10
+ "homepage": "https://inplan.ai",
6
11
  "type": "module",
7
12
  "bin": {
8
13
  "inplan": "bin/cli.js"