forked from SamXop123/Paraline
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (83 loc) · 2.34 KB
/
Copy pathpackage.json
File metadata and controls
84 lines (83 loc) · 2.34 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
{
"name": "paraline",
"version": "2.0.0",
"description": "Windows desktop audio visualizer with transparent edge-light overlays and real-time system audio capture.",
"main": "main.js",
"scripts": {
"start": "electron .",
"dev": "electron .",
"landing:dev": "npm --prefix landing run dev",
"landing:build": "npm --prefix landing run build",
"audio:helper:info": "node -e \"console.log('Paraline is Windows-only. Build the helper with: dotnet build ./audio-helper/Paraline.AudioBridge.csproj')\"",
"build:helper": "dotnet publish .\\audio-helper\\Paraline.AudioBridge.csproj -c Release -r win-x64 --self-contained true -p:PublishSingleFile=true -p:IncludeNativeLibrariesForSelfExtract=true -o .\\build\\audio-helper",
"pack:win": "npm run build:helper && npm run validate:helper && electron-builder --dir --win nsis --x64",
"dist:win": "npm run build:helper && npm run validate:helper && electron-builder --win nsis --x64",
"validate:helper": "node scripts/validate-helper.js"
},
"keywords": [
"electron",
"overlay",
"visualizer",
"desktop"
],
"author": "SamXop123",
"license": "MIT",
"devDependencies": {
"electron": "^37.0.0",
"electron-builder": "^26.8.1",
"vite": "^8.0.13"
},
"dependencies": {},
"build": {
"appId": "com.paraline.app",
"productName": "Paraline",
"artifactName": "${productName}-Setup-${version}.${ext}",
"directories": {
"output": "dist",
"buildResources": "assets"
},
"files": [
"main.js",
"renderer.js",
"preload.js",
"audioBridge.js",
"settingsStore.js",
"themeAgent.js",
"settings.html",
"settings.css",
"settings.js",
"index.html",
"styles.css",
"themes/**/*",
"package.json",
"assets/**/*"
],
"extraResources": [
{
"from": "build/audio-helper",
"to": "audio-helper",
"filter": [
"Paraline.AudioBridge.exe"
]
}
],
"win": {
"target": [
{
"target": "nsis",
"arch": [
"x64"
]
}
],
"icon": "assets/appicon.ico"
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true,
"createDesktopShortcut": true,
"createStartMenuShortcut": true,
"shortcutName": "Paraline"
}
}
}