create-message-kit 1.1.7-beta.13 → 1.1.7-beta.14
Sign up to get free protection for your applications and to get access to all the features.
package/package.json
CHANGED
@@ -4,16 +4,13 @@
|
|
4
4
|
"type": "module",
|
5
5
|
"scripts": {
|
6
6
|
"build": "tsc",
|
7
|
-
"dev": "tsc -w & sleep 1 &&
|
7
|
+
"dev": "tsc -w & sleep 1 && node --watch dist/index.js",
|
8
8
|
"start": "node dist/index.js"
|
9
9
|
},
|
10
10
|
"dependencies": {
|
11
11
|
"@stackso/js-core": "^0.3.1",
|
12
12
|
"@xmtp/message-kit": "workspace:*"
|
13
13
|
},
|
14
|
-
"devDependencies": {
|
15
|
-
"nodemon": "^3.1.3"
|
16
|
-
},
|
17
14
|
"engines": {
|
18
15
|
"node": ">=20"
|
19
16
|
}
|
@@ -6,7 +6,7 @@ run(async (context: HandlerContext) => {
|
|
6
6
|
|
7
7
|
if (!group) {
|
8
8
|
context.send(
|
9
|
-
"This
|
9
|
+
"This bot only works in group chats. Please add this bot to a group to continue",
|
10
10
|
);
|
11
11
|
}
|
12
12
|
});
|