@hasna/conversations 0.2.20 → 0.2.21

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/bin/index.js CHANGED
@@ -13349,7 +13349,7 @@ var init_poll = __esm(() => {
13349
13349
  var require_package = __commonJS((exports, module) => {
13350
13350
  module.exports = {
13351
13351
  name: "@hasna/conversations",
13352
- version: "0.2.20",
13352
+ version: "0.2.21",
13353
13353
  description: "Real-time CLI messaging for AI agents",
13354
13354
  type: "module",
13355
13355
  bin: {
@@ -13378,7 +13378,8 @@ var require_package = __commonJS((exports, module) => {
13378
13378
  test: "bun test",
13379
13379
  dev: "bun run ./src/cli/index.tsx",
13380
13380
  typecheck: "tsc --noEmit",
13381
- prepublishOnly: "bun run build"
13381
+ prepublishOnly: "bun run build",
13382
+ postinstall: "mkdir -p $HOME/.hasna/conversations $HOME/.hasna/conversations/training 2>/dev/null || true"
13382
13383
  },
13383
13384
  keywords: [
13384
13385
  "conversations",
package/bin/mcp.js CHANGED
@@ -39782,7 +39782,7 @@ function getGraphStats() {
39782
39782
  // package.json
39783
39783
  var package_default = {
39784
39784
  name: "@hasna/conversations",
39785
- version: "0.2.20",
39785
+ version: "0.2.21",
39786
39786
  description: "Real-time CLI messaging for AI agents",
39787
39787
  type: "module",
39788
39788
  bin: {
@@ -39811,7 +39811,8 @@ var package_default = {
39811
39811
  test: "bun test",
39812
39812
  dev: "bun run ./src/cli/index.tsx",
39813
39813
  typecheck: "tsc --noEmit",
39814
- prepublishOnly: "bun run build"
39814
+ prepublishOnly: "bun run build",
39815
+ postinstall: "mkdir -p $HOME/.hasna/conversations $HOME/.hasna/conversations/training 2>/dev/null || true"
39815
39816
  },
39816
39817
  keywords: [
39817
39818
  "conversations",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hasna/conversations",
3
- "version": "0.2.20",
3
+ "version": "0.2.21",
4
4
  "description": "Real-time CLI messaging for AI agents",
5
5
  "type": "module",
6
6
  "bin": {
@@ -29,7 +29,8 @@
29
29
  "test": "bun test",
30
30
  "dev": "bun run ./src/cli/index.tsx",
31
31
  "typecheck": "tsc --noEmit",
32
- "prepublishOnly": "bun run build"
32
+ "prepublishOnly": "bun run build",
33
+ "postinstall": "mkdir -p $HOME/.hasna/conversations $HOME/.hasna/conversations/training 2>/dev/null || true"
33
34
  },
34
35
  "keywords": [
35
36
  "conversations",
@@ -76,4 +77,4 @@
76
77
  "url": "https://github.com/hasna/conversations/issues"
77
78
  },
78
79
  "homepage": "https://github.com/hasna/conversations#readme"
79
- }
80
+ }