-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 1.89 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 1.89 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
{
"name": "ynodesktop",
"version": "1.2.7",
"description": "A Yume Nikki Online desktop client with optional Discord Rich Presence",
"main": "src/main.js",
"scripts": {
"start": "electron .",
"dist": "electron-builder",
"dist-win": "electron-builder --win",
"dist-linux": "electron-builder --linux",
"dist-mac": "electron-builder --mac"
},
"author": "jvbf, abbey, foundationkitty",
"license": "MIT",
"devDependencies": {
"electron": "^39.8.5",
"electron-builder": "^26.0.0"
},
"build": {
"appId": "jvbf.ynodesktop",
"productName": "YNOdesktop",
"artifactName": "${productName}-${version}-${os}-${arch}.${ext}",
"asar": true,
"compression": "maximum",
"electronLanguages": [
"en-US"
],
"files": [
"**/*",
"!.github/**",
"!generateReleaseNotes.js",
"!eslint.config.mjs",
"!README.md",
"!LICENSE",
"!yarn.lock",
"!**/node_modules/**/{CHANGELOG.md,README.md,readme.md,readme,*.ts,*.d.ts,*.map}",
"!**/node_modules/**/test{,s}/**",
"!**/node_modules/**/__tests__/**",
"!**/node_modules/**/{.eslintrc,.prettierrc,.editorconfig}*"
],
"linux": {
"target": [
"AppImage"
],
"category": "Game",
"icon": "assets/logo.png"
},
"mac": {
"target": [
{
"target": "dmg",
"arch": [
"x64",
"arm64"
]
},
{
"target": "zip",
"arch": [
"x64",
"arm64"
]
}
],
"category": "public.app-category.games",
"icon": "assets/logo.png"
},
"win": {
"target": [
"portable"
],
"icon": "assets/logo.ico"
}
},
"dependencies": {
"discord-rpc": "^4.0.1",
"electron-context-menu": "^3.6.1",
"electron-store": "^8.2.0",
"sweetalert2": "^11.26.22"
}
}