-
-
Notifications
You must be signed in to change notification settings - Fork 46
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.51 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 1.51 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
{
"name": "sndcli",
"version": "1.5.0",
"description": "Own your music. Download your YouTube, SoundCloud, and Spotify libraries to your computer and play them offline, all from your terminal.",
"type": "module",
"bin": {
"sndcli": "./dist/index.js"
},
"files": [
"dist",
"preview"
],
"engines": {
"node": ">=22"
},
"scripts": {
"dev": "tsx src/index.tsx",
"build": "tsup",
"start": "node dist/index.js",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"previews": "tsx scripts/render-previews.ts",
"prepublishOnly": "npm run build && tsx scripts/check-dist-imports.ts"
},
"keywords": [
"music",
"audio",
"player",
"cli",
"terminal",
"tui",
"downloader",
"youtube",
"soundcloud",
"spotify",
"offline"
],
"author": "bairon",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/baairon/soundcli.git"
},
"homepage": "https://github.com/baairon/soundcli#readme",
"bugs": {
"url": "https://github.com/baairon/soundcli/issues"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"env-paths": "^4.0.0",
"execa": "^9.6.1",
"ink": "^7.0.5",
"react": "^19.2.7",
"string-width": "^8.2.1"
},
"devDependencies": {
"@inkjs/ui": "^2.0.0",
"@types/node": "^25.9.2",
"@types/react": "^19.2.17",
"ink-testing-library": "^4.0.0",
"tsup": "^8.5.1",
"tsx": "^4.22.4",
"typescript": "^6.0.3",
"vitest": "^4.1.8"
}
}