clisbot 0.1.53 → 0.1.54-beta.2
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/config/clisbot.json.template +73 -0
- package/dist/main.js +4338 -2363
- package/package.json +2 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "clisbot",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.54-beta.2",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "Chat surfaces for durable AI coding agents running in tmux",
|
|
6
6
|
"license": "MIT",
|
|
@@ -40,7 +40,7 @@
|
|
|
40
40
|
"typecheck": "bunx tsc --noEmit",
|
|
41
41
|
"test": "env -u SLACK_APP_TOKEN -u SLACK_BOT_TOKEN -u TELEGRAM_BOT_TOKEN -u TELEGRAM_CONTROL_BOT_TOKEN -u TELEGRAM_DEV_BOT_TOKEN bun test --preload ./test/preload-env.ts",
|
|
42
42
|
"prepack": "bun run build",
|
|
43
|
-
"check": "bun run typecheck && bun test"
|
|
43
|
+
"check": "bun run typecheck && bun test --timeout 30000"
|
|
44
44
|
},
|
|
45
45
|
"dependencies": {
|
|
46
46
|
"@slack/bolt": "^4.6.0",
|