-
Notifications
You must be signed in to change notification settings - Fork 32
/
package.json
55 lines (55 loc) · 1.38 KB
/
package.json
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
{
"name": "bilibili-live-ws",
"version": "6.3.1",
"description": "Bilibili Live WebSocket/TCP API",
"type": "commonjs",
"main": "index.js",
"browser": "browser.js",
"scripts": {
"test": "npm run clear; npm run unit",
"unit": "nyc mocha --reporter=landing -r ts-node/register test/test.ts",
"clear": "rm index.js index.d.ts browser.js browser.d.ts src/*.js src/*.d.ts;exit 0",
"tsc": "tsc -b",
"build": "npm run clear && npm run tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/simon300000/bilibili-live-ws.git"
},
"keywords": [
"bilibili",
"api",
"websocket",
"live",
"ws",
"tcp"
],
"author": "simon3000 <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/simon300000/bilibili-live-ws/issues"
},
"homepage": "https://github.com/simon300000/bilibili-live-ws#readme",
"dependencies": {
"array-flat-polyfill": "^1.0.1",
"isomorphic-ws": "^5.0.0",
"ws": "^8.2.3"
},
"devDependencies": {
"@types/chai": "^4.2.8",
"@types/mocha": "^10.0.1",
"@types/node": "^18.14.0",
"@types/pako": "^2.0.0",
"@types/ws": "^8.2.0",
"chai": "^4.2.0",
"mocha": "^10.2.0",
"nyc": "^15.0.0",
"ts-node": "^10.3.0",
"typescript": "^4.4.4"
},
"peerDependencies": {
"buffer": "^6.0.3",
"events": "^3.3.0",
"pako": "^2.0.4"
}
}