forked from sigvt/masterchat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.39 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
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": "masterchat",
"description": "JavaScript library for YouTube Live Chat",
"version": "1.1.0",
"author": "Yasuaki Uechi <[email protected]> (https://uechi.io/)",
"scripts": {
"build": "cross-env NODE_ENV=production rollup -c && shx rm -rf lib/lib lib/*.map && patch lib/masterchat.d.ts patches/fix-dts.patch",
"clean": "shx rm -rf lib",
"dev": "rollup -c -w",
"docs": "shx rm -rf docs && typedoc --out ./docs --excludeExternals --excludePrivate --excludeProtected --exclude '**/__tests__/*,**/*.test.ts' src && shx touch docs/.nojekyll",
"format": "pretty-quick --staged",
"prepare": "husky install",
"prepublishOnly": "npm run clean && npm run build",
"test": "npm run build && cross-env DEBUG=masterchat jest"
},
"type": "commonjs",
"exports": {
".": {
"import": {
"types": "./lib/masterchat.d.ts",
"default": "./lib/masterchat.mjs"
},
"require": "./lib/masterchat.js"
}
},
"types": "./lib/masterchat.d.ts",
"main": "./lib/masterchat.js",
"files": [
"lib"
],
"dependencies": {
"axios": "^0.27.2",
"debug": "^4.3.2",
"iterator-helpers-polyfill": "^2.2.8",
"sha1": "^1.1.1"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^22.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-typescript": "^8.3.2",
"@types/debug": "^4.1.7",
"@types/events": "^3.0.0",
"@types/jest": "^27.5.1",
"@types/node": "^17.0.38",
"@types/sha1": "^1.1.3",
"cross-env": "^7.0.3",
"events": "^3.3.0",
"husky": "^8.0.1",
"jest": "^28.1.0",
"nock": "^13.2.4",
"nock-record": "^0.3.9",
"npm-run-all": "^4.1.5",
"prettier": "^2.6.2",
"pretty-quick": "^3.1.1",
"rollup": "^2.75.4",
"rollup-plugin-dts": "^4.2.2",
"rollup-plugin-node-externals": "^4.0.0",
"rollup-plugin-terser": "^7.0.2",
"shx": "^0.3.4",
"ts-jest": "^28.0.3",
"ts-node": "^10.8.0",
"tslib": "^2.4.0",
"typedoc": "^0.22.16",
"typescript": "^4.7.2"
},
"homepage": "https://github.com/holodata/masterchat",
"repository": {
"type": "git",
"url": "https://github.com/holodata/masterchat.git"
},
"bugs": {
"url": "https://github.com/holodata/masterchat/issues"
},
"license": "Apache-2.0",
"keywords": [
"livechat",
"masterchat",
"youtube"
],
"engines": {
"node": ">= 16.6"
}
}