@staff0rd/assist 0.73.0 → 0.75.0

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/index.js CHANGED
@@ -6,7 +6,7 @@ import { Command } from "commander";
6
6
  // package.json
7
7
  var package_default = {
8
8
  name: "@staff0rd/assist",
9
- version: "0.73.0",
9
+ version: "0.75.0",
10
10
  type: "module",
11
11
  main: "dist/index.js",
12
12
  bin: {
@@ -64,6 +64,7 @@ var package_default = {
64
64
  "@types/react-dom": "^19.2.3",
65
65
  "@types/semver": "^7.7.1",
66
66
  esbuild: "^0.27.3",
67
+ jotai: "^2.18.0",
67
68
  jscpd: "^4.0.5",
68
69
  knip: "^5.71.0",
69
70
  marked: "^15.0.12",
@@ -2254,7 +2255,7 @@ async function web(options2) {
2254
2255
 
2255
2256
  // src/commands/registerBacklog.ts
2256
2257
  function registerBacklog(program2) {
2257
- const backlogCommand = program2.command("backlog").description("Manage a backlog of work items").action(list2);
2258
+ const backlogCommand = program2.command("backlog").description("Manage a backlog of work items").action(() => web({ port: "3000" }));
2258
2259
  backlogCommand.command("init").description("Create an empty assist.backlog.yml").action(init6);
2259
2260
  backlogCommand.command("list").description("List all backlog items").option("--status <type>", "Filter by status (todo, in-progress, done)").option("-v, --verbose", "Show all item details").action(list2);
2260
2261
  backlogCommand.command("add").description("Add a new backlog item").action(add);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@staff0rd/assist",
3
- "version": "0.73.0",
3
+ "version": "0.75.0",
4
4
  "type": "module",
5
5
  "main": "dist/index.js",
6
6
  "bin": {
@@ -58,6 +58,7 @@
58
58
  "@types/react-dom": "^19.2.3",
59
59
  "@types/semver": "^7.7.1",
60
60
  "esbuild": "^0.27.3",
61
+ "jotai": "^2.18.0",
61
62
  "jscpd": "^4.0.5",
62
63
  "knip": "^5.71.0",
63
64
  "marked": "^15.0.12",