forked from undg/xenontrade
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
123 lines (123 loc) · 3.42 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
116
117
118
119
120
121
122
123
{
"name": "xenontrade",
"author": "------",
"version": "1.2.4",
"description": "Path of Exile trading app for price checking and trade whisper management",
"main": "src/main.js",
"scripts": {
"postinstall": "electron-builder install-app-deps",
"init": "npm install && electron ./",
"start": "ELECTRON_IS_DEV=0 electron ./",
"dev": "ELECTRON_IS_DEV=1 electron ./",
"electron": "electron ./",
"build": "build",
"build:win": "build --win",
"dist-linux": "build",
"dist-win": "build --win",
"publish-linux": "build --linux --publish always",
"publish-win": "build --win --publish always"
},
"keywords": [
"poe",
"path of exile",
"trade",
"tool",
"linux"
],
"homepage": "https://github.com/und3rdg/xenontrade#readme",
"bugs": {
"url": "https://github.com/und3rdg/xenontrade/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/und3rdg/xenontrade.git"
},
"license": "MIT",
"dependencies": {
"@undg/poe-log-monitor": "^1.2.6",
"active-win": "^3.0.0",
"child-process-es6-promise": "^1.2.0",
"clipboardy": "github:klayveR/clipboardy",
"dot-prop": "^4.2.0",
"electron-is-dev": "^0.3.0",
"electron-log": "^2.2.17",
"electron-reload": "^1.4.1",
"electron-store": "^2.0.0",
"electron-updater": "^4",
"electron-window-manager": "^1.0.6",
"ffi": "^2.2.0",
"iohook": "^0.2.0",
"jquery": "^3.3.1",
"js-base64": "^2.4.9",
"promise-fs": "^1.3.0",
"ref": "^1.3.5",
"request": "^2.88.2",
"request-promise-native": "^1.0.5",
"robotjs": "^0.5.1",
"underscore": "^1.9.1",
"x11": "^2.3.0",
"x11-prop": "^0.4.3"
},
"cmake-js": {
"runtime": "electron",
"runtimeVersion": "2.0.10"
},
"iohook": {
"targets": [
"node-57",
"electron-57"
],
"platforms": [
"win32",
"linux"
],
"arches": [
"x64",
"ia32"
]
},
"build": {
"appId": "xyz.undg.xenontrade",
"files": [
"**/*",
"!**/{*.md,.DS_Store,.git,.hg,.svn,CVS,RCS,SCCS,__pycache__,thumbs.db,.gitignore,.gitattributes,.editorconfig,.flowconfig,.yarn-metadata.json,.idea,appveyor.yml,.travis.yml,circle.yml,npm-debug.log,.nyc_output,yarn.lock,.yarn-integrity}",
"build/*.png"
],
"asar": true,
"asarUnpack": [
"*.node"
],
"appImage": {
"systemIntegration": "doNotAsk"
},
"extraResources": [
{
"from": "./py/",
"to": "py",
"filter": [
"**/*"
]
}
],
"linux": {
"icon": "build/icon.icns",
"target": [
"AppImage"
],
"category": "Game"
},
"win": {
"icon": "build/icon.ico",
"target": "nsis"
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true,
"perMachine": true
}
},
"devDependencies": {
"electron": "^2.0.18",
"electron-builder": "^20.28.3"
}
}