@hmawla/co-assistant 1.0.9 → 1.0.10

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/README.md +4 -0
  2. package/package.json +6 -3
package/README.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # 🤖 Co-Assistant
2
2
 
3
+ [![CI](https://github.com/hmawla/co-assistant/actions/workflows/ci.yml/badge.svg)](https://github.com/hmawla/co-assistant/actions/workflows/ci.yml)
4
+ [![npm version](https://img.shields.io/npm/v/@hmawla/co-assistant)](https://www.npmjs.com/package/@hmawla/co-assistant)
5
+ [![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](LICENSE)
6
+
3
7
  **[Homepage](https://hmawla.github.io/co-assistant)** · **[npm](https://www.npmjs.com/package/@hmawla/co-assistant)** · **[Plugin Guide](docs/plugin-development.md)** · **[CLI Reference](docs/cli-reference.md)**
4
8
 
5
9
  AI-powered Telegram personal assistant built on the GitHub Copilot SDK.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hmawla/co-assistant",
3
- "version": "1.0.9",
3
+ "version": "1.0.10",
4
4
  "description": "AI-powered Telegram personal assistant using GitHub Copilot SDK",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -23,6 +23,8 @@
23
23
  ],
24
24
  "scripts": {
25
25
  "build": "tsup",
26
+ "test": "vitest run",
27
+ "test:watch": "vitest",
26
28
  "dev": "tsx src/cli/index.ts",
27
29
  "start": "node dist/index.js",
28
30
  "cli": "tsx src/cli/index.ts",
@@ -64,9 +66,9 @@
64
66
  "better-sqlite3": "^12.8.0",
65
67
  "commander": "^14.0.3",
66
68
  "dotenv": "^17.4.0",
69
+ "esbuild": ">=0.20.0",
67
70
  "pino": "^10.3.1",
68
71
  "telegraf": "^4.16.3",
69
- "esbuild": ">=0.20.0",
70
72
  "zod": "^4.3.6"
71
73
  },
72
74
  "devDependencies": {
@@ -74,6 +76,7 @@
74
76
  "@types/node": "^25.5.2",
75
77
  "pino-pretty": "^13.1.3",
76
78
  "tsup": "^8.5.1",
77
- "typescript": "^6.0.2"
79
+ "typescript": "^6.0.2",
80
+ "vitest": "^4.1.2"
78
81
  }
79
82
  }