-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
84 lines (84 loc) · 2.39 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
{
"name": "protewine",
"version": "1.0.19",
"main": "cache/server/server.js",
"repository": "https://github.com/hitman249/protewine",
"author": "hitman249",
"description": "Portable Windows application with Wine technology.",
"license": "MIT",
"scripts": {
"server": "yarn",
"server-start": "electron . --no-sandbox",
"server-build": "rm -rf ./cache/server ./dist/start && yarn webpack --mode production --config webpack.config.js && yarn run electron-builder && mv ./dist/protewine-*.AppImage ./dist/start",
"client": "cd client && yarn",
"client-build": "rm -rf ./cache/client && cd client && yarn build",
"client-watch": "cd client && yarn dev",
"electron-builder": "electron-builder"
},
"build": {
"appId": "ProteWine",
"asar": true,
"files": [
"cache/**/*",
"node_modules/**/*",
"package.json"
],
"publish": null,
"afterPack": "./appimage-fix.js",
"linux": {
"executableName": "protewine",
"executableArgs": [
"--no-sandbox"
],
"target": "AppImage",
"icon": "build/icons/512.png",
"category": "Game",
"desktop": {
"X-AppImage-Integrate": "false",
"X-AppImage-Name": "ProteWine",
"X-AppImage-Arch": "x86_64",
"X-AppImage-Version": "1.0.0"
}
}
},
"dependencies": {
"cookie": "^1.0.2",
"crc": "^4.3.2",
"dotenv": "^16.4.5",
"fetch-blob": "^4.0.0",
"form-data": "^4.0.1",
"glob": "^11.0.0",
"helpful-decorators": "^2.1.0",
"iconv-lite": "^0.6.3",
"locutus": "^2.0.32",
"lodash": "^4.17.21",
"lzma": "^2.3.2",
"md5-file": "^5.0.0",
"node-fetch": "^3.3.2",
"simple-vdf": "^1.1.1",
"steam-binary-vdf": "^0.1.0",
"steamgriddb": "^2.2.0",
"tree-kill": "^1.2.2",
"uuid": "^11.0.3"
},
"devDependencies": {
"@electron/rebuild": "^3.7.1",
"@types/cookie": "^1.0.0",
"@types/electron": "^1.6.12",
"@types/locutus": "^0.0.8",
"@types/lodash": "^4.17.13",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^8.16.0",
"@typescript-eslint/parser": "^8.16.0",
"copy-webpack-plugin": "^12.0.2",
"electron": "^33.2.0",
"electron-builder": "25.1.8",
"eslint": "^9.15.0",
"ts-loader": "^9.5.1",
"tslib": "^2.8.1",
"typescript": "^5.7.2",
"webpack": "^5.96.1",
"webpack-cli": "^5.1.4"
},
"packageManager": "yarn@4.2.1"
}