-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
95 lines (95 loc) · 2.65 KB
/
package.json
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
{
"main": "./app/app.js",
"name": "yam",
"version": "2.6.3",
"author": {
"name": "Millennium Earl"
},
"description": "Unoffical Game Updater for the F95Zone platform",
"repository": {
"type": "git",
"url": "https://github.com/MillenniumEarl/YAM.git"
},
"license": "MIT",
"keywords": [
"game",
"games",
"updater",
"f95zone",
"f95"
],
"scripts": {
"dist:win": "electron-builder --win --x64 --ia32",
"dist:mac": "electron-builder --mac",
"dist:linux": "electron-builder --linux"
},
"engines": {
"node": ">=14.10"
},
"dependencies": {
"@material-icons/font": "1.0.36",
"@materializecss/materialize": "^1.0.0",
"@millenniumearl/f95api": "^2.0.0-beta.13.2",
"@millenniumearl/recaptcha-harvester": "^1.2.1",
"ajv": "^8.11.0",
"electron-is-dev": "^2.0.0",
"electron-log": "^4.4.6",
"electron-online": "^1.0.0",
"electron-store": "^8.0.1",
"electron-updater": "^5.0.1",
"glob": "^8.0.1",
"i18next": "^21.6.16",
"i18next-electron-language-detector": "0.0.10",
"image-downloader": "^4.2.0",
"nedb-promises": "^6.0.3",
"new-github-issue-url": "^0.2.1",
"string-similarity": "^4.0.4",
"v8-compile-cache": "^2.3.0"
},
"devDependencies": {
"@babel/eslint-parser": "7.24.1",
"electron-builder": "23.6.0",
"electron": "18.3.15",
"eslint": "8.57.0"
},
"build": {
"appId": "com.electron.yam",
"productName": "YAM",
"copyright": "Copyright © 2021 MillenniumEarl",
"asar": true,
"publish": [
"github"
],
"files": [
"**/*",
"!.github${/*}",
"!.vscode${/*}",
"!docs${/*}",
"!eslintrc.json",
"!.gitattributes",
"!.gitignore",
"!crowdin.yml",
"!dev-app-update.yml",
"!resources/images/github${/*}"
],
"directories": {
"output": "./dist"
},
"win": {
"target": "nsis",
"icon": "./resources/images/icon.ico",
"publisherName": "MillenniumEarl",
"verifyUpdateCodeSignature": false
},
"mac": {
"category": "public.app-category.games",
"target": "default",
"icon": "./resources/images/icon.icns",
"type": "distribution"
},
"linux": {
"target": "AppImage",
"icon": "./resources/images/icon.icns"
}
}
}