koishi-plugin-echo-cave 1.7.2 → 1.7.4
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/lib/cave-helper.d.ts +4 -0
- package/lib/index.cjs +15462 -187
- package/lib/msg-helper.d.ts +3 -4
- package/package.json +13 -14
package/lib/msg-helper.d.ts
CHANGED
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
3
|
-
export declare function
|
|
4
|
-
export declare function formatDate(date: Date): string;
|
|
1
|
+
import { CQCode } from '@pynickle/koishi-plugin-adapter-onebot';
|
|
2
|
+
import { Context } from 'koishi';
|
|
3
|
+
export declare function processMessageContent(ctx: Context, msg: CQCode[]): Promise<CQCode[]>;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "koishi-plugin-echo-cave",
|
|
3
3
|
"description": "Group echo cave",
|
|
4
|
-
"version": "1.7.
|
|
4
|
+
"version": "1.7.4",
|
|
5
5
|
"main": "lib/index.cjs",
|
|
6
6
|
"typings": "lib/index.d.ts",
|
|
7
7
|
"type": "module",
|
|
@@ -11,8 +11,9 @@
|
|
|
11
11
|
],
|
|
12
12
|
"license": "MIT",
|
|
13
13
|
"scripts": {
|
|
14
|
-
"lint": "
|
|
15
|
-
"lint:fix": "
|
|
14
|
+
"lint": "npx oxlint ./src",
|
|
15
|
+
"lint:fix": "npx oxlint ./src --fix",
|
|
16
|
+
"fmt": "npx oxfmt ./src",
|
|
16
17
|
"build": "node esbuild.config.js && tsc --emitDeclarationOnly",
|
|
17
18
|
"release": "semantic-release"
|
|
18
19
|
},
|
|
@@ -26,24 +27,22 @@
|
|
|
26
27
|
"koishi": "^4.18.9"
|
|
27
28
|
},
|
|
28
29
|
"dependencies": {
|
|
29
|
-
"@pynickle/koishi-plugin-adapter-onebot": "^1.0.0"
|
|
30
|
+
"@pynickle/koishi-plugin-adapter-onebot": "^1.0.0",
|
|
31
|
+
"axios": "^1.13.2"
|
|
30
32
|
},
|
|
31
33
|
"devDependencies": {
|
|
32
34
|
"@semantic-release/changelog": "^6.0.3",
|
|
33
35
|
"@semantic-release/commit-analyzer": "^13.0.1",
|
|
34
36
|
"@semantic-release/git": "^10.0.1",
|
|
35
|
-
"@semantic-release/npm": "^13.1.
|
|
37
|
+
"@semantic-release/npm": "^13.1.2",
|
|
36
38
|
"@semantic-release/release-notes-generator": "^14.1.0",
|
|
37
|
-
"@
|
|
39
|
+
"@types/node": "^24.10.1",
|
|
38
40
|
"conventional-changelog-conventionalcommits": "^9.1.0",
|
|
39
|
-
"esbuild": "^0.
|
|
41
|
+
"esbuild": "^0.27.0",
|
|
40
42
|
"esbuild-plugin-yaml": "^0.0.1",
|
|
41
|
-
"
|
|
42
|
-
"
|
|
43
|
-
"
|
|
44
|
-
"
|
|
45
|
-
"semantic-release": "^25.0.1",
|
|
46
|
-
"typescript": "^5.9.3",
|
|
47
|
-
"typescript-eslint": "^8.46.2"
|
|
43
|
+
"oxfmt": "^0.16.0",
|
|
44
|
+
"oxlint": "^1.31.0",
|
|
45
|
+
"semantic-release": "^25.0.2",
|
|
46
|
+
"typescript": "^5.9.3"
|
|
48
47
|
}
|
|
49
48
|
}
|