-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.26 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.26 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
{
"name": "sonic-cli",
"version": "0.1.0",
"description": "A terminal music player with YouTube, SoundCloud, and Mixcloud — powered by mpv and yt-dlp",
"license": "MIT",
"type": "module",
"author": "Seth Mills",
"bin": {
"sonic": "./bin/sonic.js"
},
"files": [
"bin",
"lib",
"README.md",
"CONTRIBUTING.md",
"SECURITY.md",
"CLAUDE.md",
"AGENTS.md"
],
"scripts": {
"start": "node ./bin/sonic.js",
"check": "node --check bin/sonic.js && node --check lib/search.js && node --check lib/player.js && node --check lib/channels.js && node --check lib/ui.js && node --check lib/system.js && node --check lib/store.js && node --check lib/themes.js",
"help": "node ./bin/sonic.js --help",
"doctor": "node ./bin/sonic.js doctor"
},
"engines": {
"node": ">=20"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sethmills21/sonic.git"
},
"bugs": {
"url": "https://github.com/sethmills21/sonic/issues"
},
"homepage": "https://github.com/sethmills21/sonic#readme",
"keywords": [
"cli",
"music",
"player",
"terminal",
"tui",
"youtube",
"soundcloud",
"mixcloud",
"mpv",
"yt-dlp",
"visualizer"
],
"dependencies": {
"chalk": "^5.4.1"
}
}