-
Notifications
You must be signed in to change notification settings - Fork 194
/
package.json
115 lines (115 loc) · 3.03 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "sw-exporter",
"productName": "Summoners War Exporter",
"version": "0.0.65",
"description": "This tool will parse intercepted data from Summoners War and extract information on the monsters and runes of the user.",
"main": "./app/main.js",
"scripts": {
"start": "electron .",
"rebuild": "electron-rebuild -f -w sw-exporter",
"build": "webpack --mode=production",
"dist": "electron-builder --publish=never",
"dist-no-publish": "electron-builder --publish=never",
"dev": "webpack --watch",
"lint": "eslint . --ext .js"
},
"build": {
"productName": "Summoners War Exporter",
"appId": "com.electron.sw-exporter",
"artifactName": "${productName}-${version}-${os}.${ext}",
"win": {
"target": [
{
"target": "nsis",
"arch": [
"x64",
"ia32"
]
},
{
"target": "portable",
"arch": [
"x64",
"ia32"
]
}
]
},
"mac": {
"category": "public.app-category.utilities",
"target": [
{
"target": "dmg",
"arch": [
"x64"
]
}
]
},
"linux": {
"category": "Utility",
"target": "AppImage"
},
"nsis": {
"artifactName": "${productName}-Setup-${version}-${os}.${ext}"
},
"portable": {
"artifactName": "${productName}-Portable-${version}-${os}.${ext}"
},
"extraFiles": [
{
"from": "build/icon.ico",
"to": "resources"
}
]
},
"keywords": [],
"author": "porksmash & Xzandro",
"license": "Apache-2.0",
"bugs": "https://github.com/Xzandro/sw-exporter/issues",
"repository": {
"type": "git",
"url": "https://github.com/Xzandro/sw-exporter.git"
},
"devDependencies": {
"@babel/core": "^7.16.5",
"@babel/plugin-transform-modules-commonjs": "^7.16.5",
"@babel/preset-env": "^7.16.5",
"@babel/preset-react": "^7.16.5",
"babel-loader": "^8.2.3",
"electron": "^15.1.0",
"electron-builder": "^24.13.3",
"electron-rebuild": "^1.11.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-prettier": "^3.4.1",
"eslint-webpack-plugin": "^2.5.4",
"prettier": "2.5.1",
"prettier-eslint-cli": "^5.0.1",
"webpack": "^5.65.0",
"webpack-cli": "^4.9.1"
},
"dependencies": {
"@electron/remote": "^2.0.1",
"axios": "^1.6.7",
"compare-versions": "^6.1.0",
"date-fns": "^2.27.0",
"electron-hostile": "github:kotapeter/electron-hostile",
"electron-json-storage": "^4.5.0",
"electron-window-state": "^5.0.3",
"fast-csv": "^4.3.6",
"fs-extra": "^11.2.0",
"http-mitm-proxy": "github:Xzandro/node-http-mitm-proxy",
"lodash": "^4.17.21",
"mousetrap": "^1.6.5",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"react-router-dom": "^5.3.0",
"request": "^2.88.2",
"sanitize-filename": "^1.6.3",
"semantic-ui-react": "^2.1.5",
"uuid": "^3.4.0",
"yaml": "^2.3.4",
"yup": "^1.3.3"
}
}