-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 1.78 KB
/
Copy pathpackage.json
File metadata and controls
82 lines (82 loc) · 1.78 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "@hmawla/co-assistant",
"version": "1.0.22",
"description": "AI-powered Telegram personal assistant using GitHub Copilot SDK",
"type": "module",
"main": "dist/index.js",
"exports": {
".": "./dist/index.js",
"./cli": "./dist/cli/index.js"
},
"bin": {
"co-assistant": "dist/cli/index.js"
},
"files": [
"dist/",
"plugins/",
"heartbeats/*.heartbeat.md",
"personality.md",
"user.md.example",
"config.json.example",
"LICENSE",
"README.md"
],
"scripts": {
"build": "tsup",
"test": "vitest run",
"test:watch": "vitest",
"dev": "tsx src/cli/index.ts",
"start": "node dist/index.js",
"cli": "tsx src/cli/index.ts",
"prepublishOnly": "npm run build",
"prepack": "npm run build"
},
"keywords": [
"ai",
"assistant",
"telegram",
"bot",
"copilot",
"github-copilot",
"copilot-sdk",
"chatbot",
"plugins",
"gmail",
"google-calendar",
"automation"
],
"author": {
"name": "Hussein Al Mawla",
"email": "hussein@kockatoos.co"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/hmawla/co-assistant.git"
},
"bugs": {
"url": "https://github.com/hmawla/co-assistant/issues"
},
"homepage": "https://hmawla.github.io/co-assistant",
"engines": {
"node": ">=20.0.0"
},
"dependencies": {
"@github/copilot-sdk": "^0.2.1",
"better-sqlite3": "^12.8.0",
"commander": "^14.0.3",
"dotenv": "^17.4.0",
"esbuild": ">=0.20.0",
"pino": "^10.3.1",
"telegraf": "^4.16.3",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^25.5.2",
"pino-pretty": "^13.1.3",
"tsup": "^8.5.1",
"typescript": "^6.0.2",
"vitest": "^4.1.2"
}
}