@hasna/conversations 0.2.20 → 0.2.22
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/README.md +23 -508
- package/bin/hook.js +3449 -2894
- package/bin/index.js +4352 -3067
- package/bin/mcp.js +4120 -2914
- package/dist/index.js +3475 -2920
- package/package.json +6 -5
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hasna/conversations",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.22",
|
|
4
4
|
"description": "Real-time CLI messaging for AI agents",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -24,12 +24,13 @@
|
|
|
24
24
|
"main": "./dist/index.js",
|
|
25
25
|
"types": "./dist/index.d.ts",
|
|
26
26
|
"scripts": {
|
|
27
|
-
"build": "bun build ./src/cli/index.tsx --outdir ./bin --target bun --external ink --external react --external chalk && bun build ./src/mcp/index.ts --outfile ./bin/mcp.js --target bun && bun build ./src/hooks/blocker-hook.ts --outfile ./bin/hook.js --target bun && bun build ./src/index.ts --outdir ./dist --target bun && tsc --emitDeclarationOnly --declaration --outDir dist",
|
|
27
|
+
"build": "bun build ./src/cli/index.tsx --outdir ./bin --target bun --external ink --external react --external chalk && bun build ./src/mcp/index.ts --outfile ./bin/mcp.js --target bun && bun build ./src/hooks/blocker-hook.ts --outfile ./bin/hook.js --target bun && bun build ./src/index.ts --outdir ./dist --target bun && (tsc --emitDeclarationOnly --declaration --outDir dist || true)",
|
|
28
28
|
"build:dashboard": "cd dashboard && bun install && bun run build",
|
|
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",
|
|
@@ -50,7 +51,7 @@
|
|
|
50
51
|
"typescript": "^5"
|
|
51
52
|
},
|
|
52
53
|
"dependencies": {
|
|
53
|
-
"@hasna/cloud": "^0.1.
|
|
54
|
+
"@hasna/cloud": "^0.1.24",
|
|
54
55
|
"@modelcontextprotocol/sdk": "^1.26.0",
|
|
55
56
|
"chalk": "^5.3.0",
|
|
56
57
|
"commander": "^12.1.0",
|
|
@@ -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
|
+
}
|