This repository was archived by the owner on Jun 4, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.56 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.56 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
{
"name": "hiboss",
"version": "2026.2.12",
"type": "module",
"description": "Local-first daemon + CLI for routing durable envelopes between agents and chat channels (e.g., Telegram).",
"license": "MIT",
"engines": {
"node": ">=18"
},
"bin": {
"hiboss": "dist/bin/hiboss.js"
},
"files": [
"dist/",
"prompts/",
"README.md",
"LICENSE"
],
"scripts": {
"dev": "tsx watch src/daemon-entry.ts",
"start": "tsx src/daemon-entry.ts",
"build": "tsc",
"postbuild": "chmod +x dist/bin/hiboss.js",
"prepack": "npm run build",
"typecheck": "tsc --noEmit",
"hiboss": "tsx bin/hiboss.ts",
"examples:cli": "tsx scripts/gen-cli-examples.ts",
"examples:prompts": "tsx scripts/gen-prompt-examples.ts",
"version:suggest": "tsx scripts/suggest-version.ts",
"defaults:check": "tsx scripts/check-defaults.ts",
"verify:token-usage:real": "tsx scripts/verify-token-usage-real.ts",
"prompts:check": "tsx scripts/validate-prompts.ts",
"inventory:magic": "tsx scripts/magic-inventory.ts --out docs/spec/generated/magic-inventory.md"
},
"dependencies": {
"@inquirer/prompts": "^7.0.0",
"@types/proper-lockfile": "^4.1.4",
"better-sqlite3": "^11.7.0",
"commander": "^13.0.0",
"cron-parser": "^5.5.0",
"dotenv": "^16.4.5",
"nunjucks": "^3.2.4",
"proper-lockfile": "^4.1.2",
"telegraf": "^4.16.3"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.12",
"@types/node": "^22.10.0",
"@types/nunjucks": "^3.2.6",
"tsx": "^4.19.2",
"typescript": "^5.7.2"
}
}