-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.55 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 1.55 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": "mufify-cli",
"version": "1.0.0",
"description": "Terminal music player for local libraries. FLAC-first, playlist-per-folder, offline.",
"keywords": [
"music",
"player",
"cli",
"tui",
"flac",
"mpv",
"terminal",
"offline"
],
"license": "MIT",
"author": "Yefee8",
"repository": {
"type": "git",
"url": "git+https://github.com/Yefee8/mufify-cli.git"
},
"homepage": "https://github.com/Yefee8/mufify-cli#readme",
"bugs": {
"url": "https://github.com/Yefee8/mufify-cli/issues"
},
"type": "module",
"bin": {
"mufify-cli": "dist/cli.js"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=22"
},
"scripts": {
"build": "tsc -p tsconfig.build.json",
"dev": "tsx src/cli.ts",
"lint": "eslint .",
"format": "prettier --write .",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"prepublishOnly": "npm run lint && npm run typecheck && npm test && npm run build"
},
"dependencies": {
"@inkjs/ui": "^2.0.0",
"commander": "^15.0.0",
"env-paths": "^4.0.0",
"ink": "^7.1.1",
"ink-select-input": "^6.2.0",
"music-metadata": "^11.14.0",
"react": "^19.2.8"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^26.1.2",
"@types/react": "^19.2.18",
"eslint": "^10.8.0",
"eslint-config-prettier": "^10.1.8",
"prettier": "^3.9.6",
"tsx": "^4.23.5",
"typescript": "~6.0.3",
"typescript-eslint": "^8.66.0",
"vitest": "^4.1.10"
}
}