-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 3.21 KB
/
Copy pathpackage.json
File metadata and controls
106 lines (106 loc) · 3.21 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
{
"name": "next-music",
"version": "3.11.1",
"description": "Web client for Yandex Music with support for themes, addons, Discord Rich Presence (RPC) and OBS widget",
"main": "dist/index.js",
"engines": {
"node": ">=24.0.0",
"pnpm": ">=9.0.0"
},
"packageManager": "pnpm@11.11.0",
"scripts": {
"dev:vite": "vite",
"dev:electron": "electron src/index.js",
"dev": "concurrently \"pnpm run dev:vite\" \"pnpm run dev:electron\"",
"build:renderer": "vite build",
"build:electron": "vite build --mode main",
"build": "vite build && vite build --mode main",
"build:win": "vite build && vite build --mode main && cross-env pnpm_config_verify_deps_before_run=false electron-builder --win --publish never",
"build:linux": "vite build && vite build --mode main && cross-env pnpm_config_verify_deps_before_run=false electron-builder --linux --publish never",
"build:all": "vite build && vite build --mode main && cross-env pnpm_config_verify_deps_before_run=false electron-builder --win --linux --publish never",
"start": "electron dist/index.js",
"format": "biome format --write .",
"format:check": "biome check .",
"lint": "biome lint ."
},
"build": {
"appId": "com.nextmusic.client",
"productName": "Next Music",
"publish": [
{
"provider": "github",
"owner": "Web-Next-Music",
"repo": "Next-Music-Client"
}
],
"files": ["dist/**/*", "package.json"],
"directories": {
"buildResources": "src/assets",
"output": "release"
},
"win": {
"artifactName": "${name}_${version}_${arch}-Setup.${ext}",
"target": [
{
"target": "nsis",
"arch": ["x64"]
}
],
"icon": "src/assets/nm-icons/icon-256.png",
"executableName": "Next Music"
},
"linux": {
"artifactName": "${name}_${version}_${arch}.${ext}",
"target": ["AppImage", "deb", "pacman"],
"category": "Audio",
"maintainer": "Diramix <39developer@diram1x.ru>",
"icon": "src/assets/nm-icons/icon-256.png",
"executableName": "next-music"
},
"pacman": {
"depends": ["gtk3", "libnotify", "nss", "libxss", "glibc"],
"artifactName": "${name}_${version}_${arch}.pkg.tar.zst"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/Web-Next-Music/Next-Music-Client.git"
},
"keywords": [],
"author": "Diramix <39developer@diram1x.ru>",
"license": "MIT",
"type": "module",
"bugs": {
"url": "https://github.com/Web-Next-Music/Next-Music-Client/issues"
},
"homepage": "https://github.com/Web-Next-Music/Next-Music-Client#readme",
"devDependencies": {
"@biomejs/biome": "^2.5.3",
"codemirror": "^5.65.21",
"concurrently": "^10.0.3",
"cross-env": "^10.1.0",
"dotenv": "^17.4.2",
"electron": "^43.1.0",
"electron-builder": "^26.15.3",
"esbuild": "^0.28.1",
"html-minifier-terser": "^7.2.0",
"lightningcss": "^1.32.0",
"sass": "^1.101.0",
"scss": "^0.2.4",
"terser": "^5.49.0",
"vite": "^8.1.4",
"vite-plugin-electron": "^1.1.0"
},
"dependencies": {
"@fontsource/noto-sans": "^5.2.10",
"@fontsource/nunito": "^5.2.7",
"@fontsource/science-gothic": "^5.2.1",
"@fontsource/space-mono": "^5.2.9",
"@fontsource/syne": "^5.2.7",
"@xhayper/discord-rpc": "^1.3.4",
"electron-updater": "^6.8.9",
"lamejs": "^1.2.1",
"mdui": "^2.1.4",
"ws": "^8.21.0"
}
}