-
-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
133 lines (133 loc) · 3.61 KB
/
Copy pathpackage.json
File metadata and controls
133 lines (133 loc) · 3.61 KB
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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
{
"name": "@involvex/youtube-music-cli",
"version": "0.0.79",
"description": "- A Commandline music player for youtube-music",
"repository": {
"type": "git",
"url": "git+https://github.com/involvex/youtube-music-cli.git"
},
"funding": "https://github.com/sponsors/involvex",
"license": "MIT",
"author": "involvex",
"type": "module",
"bin": {
"youtube-music-cli": "dist/source/cli.js",
"ymc": "dist/source/cli.js"
},
"files": [
"dist",
"README.md",
"CHANGELOG.md",
"LICENSE",
".github/FUNDING.yml",
"assets/player-preview.gif"
],
"icon": "assets/icon2.PNG",
"sponsor": {
"url": "https://github.com/sponsors/involvex"
},
"homepage": "https://involvex.github.io/youtube-music-cli/",
"keywords": [
"cli",
"youtube",
"youtube-music",
"youtube-cli",
"youtube-music-cli",
"ink",
"cli-music"
],
"workspaces": [
"web"
],
"scripts": {
"prebuild": "bun run format && bun run lint:fix && bun run typecheck",
"build": "bun build source/cli.tsx --outfile dist/source/cli.js --target bun --footer \"//Copyright (c) 2026 involvex\" --production",
"compile": "bun scripts/build-cli.ts",
"dev": "bun run --bun source/cli.tsx",
"dev:watch": "bun run --bun --watch source/cli.tsx",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx --ignore-pattern dist",
"lint:fix": "eslint . --ext .js,.jsx,.ts,.tsx --fix --ignore-pattern dist",
"start": "bun run dist/source/cli.js",
"test": "bun run build && ava",
"typecheck": "tsc --noEmit",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"clean": "rimraf dist",
"release": "powershell -File scripts/release.ps1",
"build:web": "cd web && bun run build",
"dev:web": "cd web && bun run dev",
"build:all": "bun run build && bun run build:web",
"msix": "bun run compile && msix-packager-cli package --config ./msix-config.json --skip-build"
},
"prettier": "@vdemedes/prettier-config",
"ava": {
"files": [
"tests/**/*.js"
],
"nodeArguments": [
"--import=tsx"
],
"workerThreads": false,
"timeout": "30s"
},
"dependencies": {
"@distube/ytdl-core": "^4.16.12",
"@types/bun": "^1.3.14",
"ansi-escapes": "^7.3.0",
"bun-types": "^1.3.14",
"discord-rpc": "^4.0.1",
"ink": "^7.0.6",
"ink-table": "^3.1.0",
"ink-text-input": "^6.0.0",
"jiti": "^2.7.0",
"meow": "^14.1.0",
"node-notifier": "^10.0.1",
"node-youtube-music": "^0.10.3",
"play-sound": "^1.1.6",
"react": "^19.2.7",
"ws": "^8.21.0",
"youtube-ext": "^1.1.25",
"youtubei.js": "^17.0.1"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@sindresorhus/tsconfig": "^8.1.0",
"@tsconfig/bun": "^1.0.10",
"@types/node": "^25.9.3",
"@types/react": "^19.2.17",
"@types/ws": "^8.18.1",
"@vdemedes/prettier-config": "^2.0.1",
"ava": "^8.0.1",
"chalk": "^5.6.2",
"conventional-changelog-cli": "^5.0.0",
"eslint": "^10.5.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.1.1",
"globals": "^17.6.0",
"ink-testing-library": "^4.0.0",
"prettier": "^3.8.4",
"prettier-plugin-organize-imports": "^4.3.0",
"prettier-plugin-packagejson": "^3.0.2",
"prettier-plugin-sort-imports": "^1.8.11",
"react-devtools-core": "^7.0.1",
"rimraf": "^6.1.3",
"tsx": "^4.22.4",
"typescript": "^6.0.3",
"typescript-eslint": "^8.61.0"
},
"engines": {
"bun": ">=1.0"
},
"sponsors": "https://github.com/sponsors/involvex",
"overrides": {
"minimatch": "^10.2.1"
},
"trustedDependencies": [
"unrs-resolver"
],
"patchedDependencies": {
"tr46@0.0.3": "patches/tr46@0.0.3.patch",
"whatwg-url@5.0.0": "patches/whatwg-url@5.0.0.patch"
}
}