-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
132 lines (132 loc) · 3.59 KB
/
Copy pathpackage.json
File metadata and controls
132 lines (132 loc) · 3.59 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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
{
"name": "museonic",
"version": "1.0.7",
"description": "Local voice-to-song AI companion built with Electron, Whisper, and n8n automation.",
"main": "main.js",
"scripts": {
"build:renderer": "cd renderer && npm run build",
"build:icon": "node scripts/apply-circular-macos-icon.js",
"build": "npm run build:renderer",
"start": "npm run build:renderer && npm run build:icon && electron .",
"dev": "cd renderer && npm run dev",
"rebuild": "electron-rebuild -f -w node-record-lpcm16",
"setup-python": "bash python_env/setup.sh",
"transcribe": "python3 backend/whisper/transcribe.py --file ./temp/sample.wav",
"postinstall": "cd renderer && npm install",
"dist": "npm run build:renderer && npm run build:icon && electron-builder",
"dist:mac": "npm run build:renderer && npm run build:icon && electron-builder --mac",
"dist:win": "npm run build:renderer && npm run build:icon && electron-builder --win",
"dist:linux": "npm run build:renderer && npm run build:icon && electron-builder --linux",
"pack": "npm run build:renderer && npm run build:icon && electron-builder --dir"
},
"keywords": [
"music",
"electron",
"whisper",
"n8n",
"voice-to-song",
"ai companion",
"local voice-to-song AI companion"
],
"author": {
"name": "Neha Kumari",
"email": "nk8981398@gmail.com"
},
"license": "ISC",
"type": "commonjs",
"dependencies": {
"@chainsafe/libp2p-gossipsub": "^14.1.2",
"@chainsafe/libp2p-noise": "^17.0.0",
"@libp2p/circuit-relay-v2": "^4.1.2",
"@libp2p/identify": "^4.0.9",
"@libp2p/kad-dht": "^16.1.2",
"@libp2p/mdns": "^12.0.10",
"@libp2p/ping": "^3.0.9",
"@libp2p/webrtc": "^6.0.10",
"@libp2p/websockets": "^10.1.2",
"@libp2p/yamux": "^8.0.1",
"dotenv": "^17.2.3",
"libp2p": "^3.1.2",
"node-record-lpcm16": "^1.0.1",
"python-shell": "^5.0.0"
},
"devDependencies": {
"electron": "^39.2.7",
"electron-builder": "^26.4.0",
"@electron/rebuild": "^3.6.1",
"jimp": "^0.22.12"
},
"build": {
"appId": "com.museonic.app",
"productName": "Museonic",
"icon": "build/icon.png",
"directories": {
"output": "dist-electron"
},
"asar": true,
"asarUnpack": [
"backend/**/*"
],
"files": [
"main.js",
"preload.js",
"build/icon.png",
"renderer/dist/**/*",
"backend/**/*",
"ollama/**/*",
"n8n/**/*",
"package.json",
"node_modules/**/*",
"!node_modules/**/*.{md,ts,map}",
"!**/*.{spec,test}.js"
],
"mac": {
"category": "public.app-category.music",
"target": [
"dmg",
"zip"
],
"extendInfo": {
"NSMicrophoneUsageDescription": "Museonic records short audio so it can transcribe what you hum or sing and find a matching track."
},
"hardenedRuntime": true,
"gatekeeperAssess": false,
"entitlements": "build/entitlements.mac.plist",
"entitlementsInherit": "build/entitlements.mac.plist"
},
"win": {
"target": [
"nsis",
"portable"
]
},
"linux": {
"target": [
"AppImage",
"deb",
"rpm"
],
"category": "AudioVideo"
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true,
"createDesktopShortcut": true,
"createStartMenuShortcut": true
},
"dmg": {
"contents": [
{
"x": 130,
"y": 220
},
{
"x": 410,
"y": 220,
"type": "link",
"path": "/Applications"
}
]
}
}
}