forked from coze-dev/coze-js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.93 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.93 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
{
"name": "@coze/realtime-api",
"version": "1.0.3-beta.6",
"description": "A powerful real-time communication SDK for voice interactions with Coze AI bots | 扣子官方实时通信 SDK,用于与 Coze AI bots 进行语音交互",
"keywords": [
"coze",
"ai",
"realtime",
"voice",
"rtc",
"asr",
"tts",
"ai-agent",
"voice-synthesis"
],
"homepage": "https://github.com/coze-dev/coze-js/packages/realtime-api",
"repository": {
"type": "git",
"url": "https://github.com/coze-dev/coze-js.git",
"directory": "packages/realtime-api"
},
"license": "MIT",
"author": "jackshen <jackshen310@gmail.com>",
"type": "module",
"exports": {
".": {
"require": "./dist/cjs/index.cjs",
"import": "./dist/esm/index.js",
"types": "./dist/types/index.d.ts"
}
},
"main": "dist/cjs/index.cjs",
"module": "dist/esm/index.js",
"types": "./src/index.ts",
"typings": "dist/types/index.d.ts",
"files": [
"dist",
"LICENSE",
"README.md"
],
"scripts": {
"build": "rm -rf ./dist && rslib build",
"buildAll": "npm run build && cd ../../examples/realtime-console && npm run build",
"demo": "npm run start & cd ../../examples/realtime-console && npm run start",
"format": "prettier --write .",
"lint": "eslint ./ --cache --quiet",
"start": "rm -rf dist && rslib build -w",
"test": "vitest",
"test:cov": "vitest --coverage --run"
},
"dependencies": {
"@coze/api": "workspace:*",
"@volcengine/rtc": "^4.62.1"
},
"devDependencies": {
"@coze-infra/eslint-config": "workspace:*",
"@coze-infra/ts-config": "workspace:*",
"@coze-infra/vitest-config": "workspace:*",
"@rslib/core": "0.0.18",
"@swc/core": "^1.3.14",
"@types/node": "^20",
"@types/uuid": "^9.0.1",
"@types/whatwg-fetch": "^0.0.33",
"@vitest/coverage-v8": "~2.1.4",
"axios": "^1.7.7",
"typescript": "^5.5.3",
"vitest": "~2.1.4"
}
}