-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.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": "yt-cast-receiver",
"version": "1.3.1",
"type": "module",
"description": "YouTube Cast Receiver for Node. Supports casting from YouTube and YouTube Music.",
"scripts": {
"build": "npm run prepare",
"build:esm": "npx tsc -p tsconfig-esm.json",
"build:cjs": "npx tsc -p tsconfig.json",
"prepare": "rm -rf dist && npm run build:esm && npm run build:cjs && bash fixup.sh",
"lint": "npx eslint ./src && npx eslint ./example",
"lint:fix": "npx eslint ./src --fix && npx eslint ./example --fix",
"doc": "npx typedoc",
"example": "npx tsx ./example/index.ts",
"example:no-ui": "npx tsx ./example/index.ts --no-ui"
},
"main": "./dist/cjs/index-cjs.js",
"module": "./dist/mjs/index.js",
"types": "./dist/mjs/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/mjs/index.d.ts",
"default": "./dist/mjs/index.js"
},
"require": {
"types": "./dist/cjs/index.d.ts",
"default": "./dist/cjs/index-cjs.js"
}
}
},
"author": "Patrick Kan <[email protected]> (https://github.com/patrickkfkan)",
"repository": {
"type": "git",
"url": "https://github.com/patrickkfkan/yt-cast-receiver.git"
},
"license": "MIT",
"directories": {
"dist": "./dist"
},
"engines": {
"node": ">=18"
},
"devDependencies": {
"@types/blessed": "^0.1.21",
"@types/express": "^4.17.17",
"@types/line-by-line": "^0.1.6",
"@types/newline-remove": "^1.0.0",
"@types/node": "^18.19.65",
"@types/node-persist": "^3.1.3",
"@types/uuid": "^9.0.1",
"@typescript-eslint/eslint-plugin": "^8.15.0",
"@typescript-eslint/parser": "^8.15.0",
"eslint": "^9.15.0",
"eslint-plugin-tsdoc": "^0.3.0",
"eslint-plugin-unused-imports": "^4.1.4",
"tsx": "^4.19.2",
"typedoc": "^0.26.11",
"typedoc-plugin-markdown": "^4.2.10",
"typedoc-plugin-rename-defaults": "^0.7.1",
"typescript": "~5.6.3",
"typescript-eslint": "^8.15.0"
},
"dependencies": {
"@patrickkfkan/peer-dial": "^0.1.3",
"@types/peer-dial": "0.0.1",
"blessed": "^0.1.81",
"express": "^4.18.2",
"line-by-line": "^0.1.6",
"newline-remove": "^1.0.2",
"node-persist": "^3.1.3",
"query-string": "^7.0.0",
"timer-node": "^5.0.7",
"uuid": "^9.0.0",
"youtubei.js": "^12.1.0"
},
"keywords": [
"youtube",
"music",
"chromecast",
"cast",
"dial"
]
}