-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 1.84 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 1.84 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
80
81
82
83
84
{
"name": "tiktok-live-api",
"version": "1.2.2",
"description": "Unofficial TikTok LIVE API Client — Real-time chat, gifts, viewers, battles, and AI live captions from any TikTok livestream. Managed WebSocket API with 99.9% uptime.",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts --clean",
"prepublishOnly": "npm run build"
},
"keywords": [
"tiktok",
"tiktok-live",
"tiktok-api",
"tiktok-live-api",
"tiktok-live-connector",
"tiktok-live-sdk",
"tiktok-websocket",
"tiktok-chat",
"tiktok-gifts",
"tiktok-bot",
"tiktok-data",
"tiktok-stream",
"tiktok-events",
"tiktok-viewer",
"live-streaming",
"live-chat",
"webcast",
"websocket",
"real-time",
"speech-to-text",
"captions",
"transcription",
"translation",
"tiktok-live-python",
"tiktok-tools",
"euler-stream",
"tiktoklive",
"tiktok-connector",
"tiktok-live-node",
"tiktok-live-js",
"tiktok-scraper",
"tiktok-monitoring",
"livestream-api"
],
"author": {
"name": "TikTool",
"email": "support@tik.tools",
"url": "https://tik.tools"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/tiktool/tiktok-live-api"
},
"bugs": {
"url": "https://github.com/tiktool/tiktok-live-api/issues"
},
"homepage": "https://tik.tools",
"dependencies": {
"ws": "^8.16.0"
},
"devDependencies": {
"@types/ws": "^8.5.10",
"tsup": "^8.0.0",
"typescript": "^5.3.0"
},
"engines": {
"node": ">=16.0.0"
}
}