-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.29 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.29 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
{
"name": "hexendrum",
"version": "0.1.0",
"description": "A modern, open-source music player with Electron UI",
"main": "main.js",
"scripts": {
"start": "electron .",
"dev": "concurrently -n \"backend,frontend\" -c \"cyan,magenta\" \"npm run dev:backend\" \"npm run dev:frontend\"",
"dev:backend": "cargo run",
"dev:frontend": "concurrently \"npm run dev:webpack\" \"wait-on http://localhost:4000 && electron . --dev\"",
"dev:webpack": "webpack serve --config webpack.config.js",
"build": "npm run build:webpack && npm run build:electron",
"build:webpack": "webpack --mode production --config webpack.config.js",
"build:electron": "electron-builder",
"dist": "npm run build && electron-builder --publish=never",
"postinstall": "electron-builder install-app-deps"
},
"keywords": [
"music",
"player",
"audio",
"playlist",
"library",
"electron"
],
"author": "From Abyss Studio",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.23.3",
"@babel/preset-env": "^7.23.3",
"@babel/preset-react": "^7.23.3",
"@types/node": "^20.10.0",
"babel-loader": "^9.1.3",
"concurrently": "^8.2.2",
"css-loader": "^6.8.1",
"electron": "^28.0.0",
"electron-builder": "^24.9.1",
"html-webpack-plugin": "^5.5.3",
"style-loader": "^3.3.3",
"wait-on": "^7.2.0",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
},
"dependencies": {
"framer-motion": "^10.16.0",
"lucide-react": "^0.294.0",
"music-metadata": "^11.8.3",
"play-sound": "^1.1.6",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.20.0",
"styled-components": "^6.1.0"
},
"build": {
"appId": "com.fromabyssstudio.hexendrum",
"productName": "Hexendrum",
"icon": "assets/icons/logo.png",
"directories": {
"output": "dist"
},
"files": [
"main.js",
"preload.js",
"renderer/**/*",
"assets/**/*"
],
"mac": {
"category": "public.app-category.music",
"icon": "assets/icons/logo.png"
},
"linux": {
"target": "AppImage",
"category": "AudioVideo",
"icon": "assets/icons/logo.png"
},
"win": {
"target": "nsis",
"icon": "assets/icons/logo.png"
}
}
}