-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.04 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.04 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
{
"name": "coze-openclaw-plugin",
"version": "0.1.16",
"description": "OpenClaw Coze tools, bundled skills, session recovery, and upgrade management",
"type": "module",
"scripts": {
"test": "vitest run ./src"
},
"files": [
"index.ts",
"openclaw.plugin.json",
"src/client.ts",
"src/config.ts",
"src/skill-cli.ts",
"src/shared/asr.ts",
"src/shared/fetch.ts",
"src/shared/image-gen.ts",
"src/shared/video-gen.ts",
"src/shared/search.ts",
"src/shared/tts.ts",
"src/tools/web-fetch.ts",
"src/tools/web-search.ts",
"src/session-recovery.ts",
"src/upgrade/",
"src/wechat-login/",
"skills",
"README.md",
"LICENSE"
],
"dependencies": {
"@sinclair/typebox": "0.34.48",
"coze-coding-dev-sdk": "0.7.17",
"json5": "2.2.3",
"jiti": "2.6.1"
},
"openclaw": {
"extensions": [
"./index.ts"
],
"install": {
"npmSpec": "coze-openclaw-plugin",
"localPath": "extensions/coze-openclaw-plugin",
"defaultChoice": "npm"
}
}
}