-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.11 KB
/
Copy pathpackage.json
File metadata and controls
94 lines (94 loc) · 2.11 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
{
"name": "ynodesktop",
"version": "1.3.0",
"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": "^43.1.1",
"electron-builder": "^26.15.3"
},
"build": {
"appId": "jvbf.ynodesktop",
"productName": "YNOdesktop",
"artifactName": "${productName}-${version}-${os}-${arch}.${ext}",
"asar": true,
"compression": "maximum",
"electronLanguages": [
"en-US"
],
"publish": [
{
"provider": "github",
"owner": "affectioned",
"repo": "ynodesktop"
}
],
"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": "^4.1.2",
"electron-store": "^11.0.2",
"sweetalert2": "^11.26.25"
},
"resolutions": {
"node-abi": "^4.33.0"
},
"overrides": {
"node-abi": "^4.33.0"
}
}