-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 1.87 KB
/
Copy pathpackage.json
File metadata and controls
83 lines (83 loc) · 1.87 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
{
"name": "voice-runner",
"version": "1.0.0",
"description": "🎤 Voice Runner — Endless runner game dengan voice control",
"main": "electron/main.js",
"author": {
"name": "BoneFishStudio",
"email": "rozakadm@gmail.com"
},
"license": "MIT",
"engines": {
"node": ">=22.12.0"
},
"scripts": {
"electron:dev": "electron .",
"electron:build": "electron-builder",
"electron:build:win": "electron-builder --win",
"electron:build:mac": "electron-builder --mac",
"electron:build:linux": "electron-builder --linux"
},
"build": {
"appId": "com.bonefishstudio.voicerunner",
"productName": "Voice Runner",
"directories": {
"output": "dist-electron"
},
"files": [
"index.html",
"favicon.ico",
"manifest.json",
"sw.js",
"js/**/*",
"css/**/*",
"Music/**/*",
"assets/**/*",
"electron/**/*"
],
"win": {
"target": [
{
"target": "portable",
"arch": ["x64"]
}
],
"icon": "assets/icon.png",
"artifactName": "VoiceRunner-${version}-win.${ext}"
},
"mac": {
"target": [
{
"target": "dmg",
"arch": ["x64", "arm64"]
}
],
"icon": "assets/icon.png",
"artifactName": "VoiceRunner-${version}-mac.${ext}"
},
"linux": {
"target": [
{
"target": "AppImage",
"arch": ["x64"]
}
],
"icon": "assets/icon.png",
"category": "Game",
"artifactName": "VoiceRunner-${version}-linux.${ext}"
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true,
"createDesktopShortcut": true,
"shortcutName": "Voice Runner"
}
},
"devDependencies": {
"electron": "^41.10.5",
"electron-builder": "^26.15.3"
},
"overrides": {
"@noble/hashes": "1.8.0"
}
}