-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
75 lines (75 loc) · 1.79 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
{
"private": true,
"name": "FFX&X-2_LAUNCHER",
"description": "Gamepad and UnX friendly Launcher for FINAL FANTASY X/X-2 HD Remaster (PC)",
"version": "2.1.0",
"type": "module",
"main": "./electron/main/boot.js",
"engines": {
"node": ">=20.11.0",
"npm": "^10.2.4"
},
"os": [
"win32"
],
"cpu": [
"x64",
"ia32"
],
"scripts": {
"lint": "eslint .",
"start": "electron --js-flags='--env-file=.env' .",
"clean": "npm prune --production",
"build": "node build/build.js",
"build:asar": "node build/build.js --asar"
},
"author": {
"name": "Anthony Beaumont",
"email": "[email protected]",
"url": "https://xan105.com/"
},
"license": "GPL-3.0-only",
"repository": {
"type": "git",
"url": "git+https://github.com/xan105/FFX-X2_LAUNCHER.git"
},
"bugs": {
"url": "https://github.com/xan105/FFX-X2_LAUNCHER/issues"
},
"homepage": "https://github.com/xan105/FFX-X2_LAUNCHER#readme",
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/xan105"
},
{
"type": "paypal",
"url": "https://www.paypal.me/xan105"
},
{
"type": "patreon",
"url": "https://www.patreon.com/xan105"
}
],
"devDependencies": {
"@electron/asar": "^3.2.9",
"@electron/fuses": "^1.8.0",
"@eslint/js": "^8.56.0",
"cli-progress": "^3.12.0",
"electron": "^30.0.0",
"electron-context-menu": "^3.6.1",
"eslint": "^8.56.0",
"globals": "^14.0.0"
},
"dependencies": {
"@xan105/error": "^1.7.1",
"@xan105/ffi": "^1.1.3",
"@xan105/fs": "^2.2.1",
"@xan105/ini": "^2.2.0",
"@xan105/is": "^2.9.3",
"@xan105/usershellfolder": "^1.2.1",
"@xan105/vanilla-query": "^1.8.0",
"win-screen-resolution": "^3.0.2",
"xinput-ffi": "^4.0.0"
}
}