-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.45 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
{
"name": "masterchat-cli",
"description": "See YouTube Live Chat through flexible filtering engine.",
"version": "1.0.0",
"author": "Yasuaki Uechi <[email protected]> (https://uechi.io/)",
"scripts": {
"build": "tsc && shx chmod +x ./dist/cli.js",
"clean": "shx rm -rf dist",
"dev": "tsc -w",
"format": "pretty-quick --staged",
"prepare": "husky install",
"prepublishOnly": "npm run clean && npm run build",
"test": "npm run build && vitest run"
},
"type": "module",
"main": "dist/cli.js",
"bin": {
"masterchat": "dist/cli.js",
"mc": "dist/cli.js"
},
"files": [
"dist"
],
"dependencies": {
"chalk": "^5.0.1",
"cross-fetch": "^3.1.4",
"epicfail": "^3.0.0",
"lru-cache": "^7.10.1",
"masterchat": "^1.1.0",
"vm2": "^3.9.9",
"yargs": "^17.5.1"
},
"devDependencies": {
"@types/node": "^17.0.38",
"@types/yargs": "^17.0.10",
"execa": "^6.1.0",
"husky": "^8.0.1",
"prettier": "^2.6.2",
"pretty-quick": "^3.1.2",
"shx": "^0.3.3",
"ts-node": "^10.8.0",
"typescript": "^4.7.2",
"vitest": "^0.13.1"
},
"homepage": "https://github.com/holodata/masterchat-cli",
"repository": {
"type": "git",
"url": "https://github.com/holodata/masterchat-cli.git"
},
"bugs": {
"url": "https://github.com/holodata/masterchat-cli/issues"
},
"license": "Apache-2.0",
"keywords": [
"masterchat",
"youtube"
],
"engines": {
"node": ">= 14"
}
}