-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.64 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.64 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
{
"name": "13---sterrify",
"version": "1.0.0",
"main": "src/main/main.js",
"type": "module",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node start.js",
"dist": "electron-builder --win",
"dist:android": "electron-builder --android"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "Supercharged Songsterr experience with MIDI.",
"devDependencies": {
"@electron/rebuild": "^4.0.1",
"electron": "^36.4.0",
"electron-builder": "^26.0.12"
},
"dependencies": {
"discord-rpc": "^4.0.1",
"dotenv": "^16.4.5",
"easymidi": "^3.1.0",
"express": "^5.1.0",
"node-fetch": "^3.3.2",
"open": "^10.1.2",
"spotify-web-api-node": "^5.0.2"
},
"js/ts.implicitProjectConfig.module": "ESNext",
"build": {
"appId": "com.yourname.sterrify",
"productName": "Sterrify",
"files": [
"**/*",
"!start.js"
],
"win": {
"target": "nsis",
"forceCodeSigning": false
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true,
"createDesktopShortcut": true,
"createStartMenuShortcut": true
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true,
"createDesktopShortcut": true,
"createStartMenuShortcut": true
},
"asar": false,
"mac": {
"sign": false
},
"icon": "assets/logo.png"
}
}