-
Notifications
You must be signed in to change notification settings - Fork 2k
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 1.7 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 1.7 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "openclaw-funasr",
"version": "0.1.0",
"description": "Self-hosted FunASR realtime transcription for OpenClaw",
"license": "MIT",
"type": "module",
"main": "./dist/index.js",
"exports": {
".": "./dist/index.js"
},
"files": [
"dist",
"LICENSE",
"README.md",
"openclaw.plugin.json"
],
"scripts": {
"build": "node ./scripts/build.mjs",
"test": "npm run build && vitest run --config ./vitest.config.ts",
"check": "npm test",
"prepack": "npm run build"
},
"engines": {
"node": "^22.22.3 || >=24.15.0"
},
"peerDependencies": {
"openclaw": ">=2026.7.2"
},
"peerDependenciesMeta": {
"openclaw": {
"optional": true
}
},
"devDependencies": {
"@types/node": "26.1.2",
"@types/ws": "8.18.1",
"esbuild": "0.28.1",
"vitest": "4.1.10",
"ws": "8.21.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/modelscope/FunASR.git",
"directory": "integrations/openclaw"
},
"homepage": "https://github.com/modelscope/FunASR/tree/main/integrations/openclaw",
"bugs": {
"url": "https://github.com/modelscope/FunASR/issues"
},
"keywords": [
"asr",
"funasr",
"openclaw",
"speech-to-text",
"transcription",
"websocket"
],
"openclaw": {
"extensions": [
"./dist/index.js"
],
"install": {
"clawhubSpec": "clawhub:openclaw-funasr",
"npmSpec": "openclaw-funasr",
"defaultChoice": "clawhub",
"minHostVersion": ">=2026.7.2"
},
"compat": {
"pluginApi": ">=2026.7.2"
},
"build": {
"openclawVersion": "2026.7.2"
},
"release": {
"publishToClawHub": true,
"publishToNpm": true
}
}
}