@bilibili-notify/live 0.0.1-alpha.0

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/package.json ADDED
@@ -0,0 +1,50 @@
1
+ {
2
+ "name": "@bilibili-notify/live",
3
+ "version": "0.0.1-alpha.0",
4
+ "repository": {
5
+ "type": "git",
6
+ "url": "https://github.com/Akokk0/bilibili-notify"
7
+ },
8
+ "author": {
9
+ "name": "Akokko",
10
+ "email": "admin@akokko.com"
11
+ },
12
+ "description": "平台中立的 Bilibili 直播监听 / 弹幕收集 / 词云 / AI 总结业务核心(@bilibili-notify/live)",
13
+ "type": "module",
14
+ "files": [
15
+ "lib"
16
+ ],
17
+ "license": "MIT",
18
+ "main": "./lib/index.cjs",
19
+ "module": "./lib/index.mjs",
20
+ "types": "./lib/index.d.cts",
21
+ "exports": {
22
+ ".": {
23
+ "import": "./lib/index.mjs",
24
+ "require": "./lib/index.cjs"
25
+ },
26
+ "./package.json": "./package.json"
27
+ },
28
+ "dependencies": {
29
+ "blive-message-listener": "^0.5.4",
30
+ "jieba-wasm": "^2.4.0",
31
+ "luxon": "^3.5.0",
32
+ "protobufjs": "^7.4.0",
33
+ "@bilibili-notify/ai": "^0.0.1-alpha.0",
34
+ "@bilibili-notify/api": "^0.2.0-alpha.0",
35
+ "@bilibili-notify/internal": "^0.1.0-alpha.0",
36
+ "@bilibili-notify/image": "^0.0.1-alpha.0"
37
+ },
38
+ "devDependencies": {
39
+ "@types/luxon": "^3.4.2",
40
+ "@types/protobufjs": "^6.0.0"
41
+ },
42
+ "engines": {
43
+ "node": ">=20.0.0"
44
+ },
45
+ "scripts": {
46
+ "build": "vp pack",
47
+ "dev": "vp pack --watch",
48
+ "typecheck": "tsc --noEmit"
49
+ }
50
+ }