-
Notifications
You must be signed in to change notification settings - Fork 82
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.53 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.53 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
{
"name": "muffon",
"version": "2.4.0",
"description": "Advanced multi-source music streaming + discovery client",
"homepage": "https://muffon.netlify.app",
"repository": "https://github.com/staniel359/muffon",
"license": "AGPL-3.0",
"author": {
"name": "Aleksey Shpakovsky",
"email": "staniel359@gmail.com",
"url": "https://github.com/staniel359"
},
"main": "electron/main.js",
"type": "module",
"scripts": {
"start:vue": "vite",
"start:electron": "electron .",
"lint": "eslint",
"build:vue": "vite build",
"build:electron": "electron-builder --dir",
"build": "pnpm build:vue && pnpm build:electron",
"package:electron": "electron-builder",
"package": "pnpm build:vue && pnpm package:electron",
"release:electron": "pnpm package:electron --publish always",
"release": "pnpm build:vue && pnpm release:electron",
"preinstall": "npx only-allow pnpm",
"postinstall": "electron-builder install-app-deps",
"postuninstall": "electron-builder install-app-deps"
},
"dependencies": {
"@xhayper/discord-rpc": "^1.3.3",
"dayjs": "^1.11.20",
"dotenv": "^17.4.0",
"electron-dl": "^4.0.0",
"electron-store": "^11.0.2",
"electron-updater": "^6.8.3",
"emoji-picker-element": "^1.29.1",
"emoji-picker-element-data": "^1.8.0",
"i18n": "^0.15.3",
"music-metadata": "^11.12.3",
"sanitize-html": "^2.17.2",
"uint8array-extras": "^1.5.0",
"uuid": "^13.0.0"
},
"devDependencies": {
"@eslint/compat": "^2.0.4",
"@eslint/eslintrc": "^3.3.5",
"@eslint/js": "^10.0.1",
"@rollup/plugin-inject": "^5.0.5",
"@vitejs/plugin-vue": "^6.0.5",
"axios": "^1.14.0",
"change-case": "^5.4.4",
"crypto-js": "^4.2.0",
"deepmerge": "^4.3.1",
"electron": "^41.1.1",
"electron-builder": "26.8.1",
"eslint": "^10.2.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-vue": "^10.8.0",
"fomantic-ui": "^2.9.4",
"globals": "^17.4.0",
"hotkeys-js": "^4.0.3",
"i18n-iso-countries": "^7.14.0",
"jquery": "^4.0.0",
"pinia": "^3.0.4",
"sass": "^1.99.0",
"slick-carousel": "^1.8.1",
"vite": "^8.0.3",
"vite-plugin-electron-renderer": "^0.14.6",
"vite-plugin-eslint": "^1.8.1",
"vue": "^3.5.32",
"vue-i18n": "^11.3.0",
"vue-router": "^5.0.4"
},
"packageManager": "pnpm@10.30.3",
"pnpm": {
"onlyBuiltDependencies": [
"@parcel/watcher",
"electron",
"electron-winstaller",
"es5-ext",
"esbuild",
"less",
"register-scheme"
]
}
}