forked from klayveR/xenontrade
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
106 lines (106 loc) · 2.56 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
{
"name": "XenonTrade",
"version": "0.4.1",
"description": "Path of Exile trading app for price checking and whisper management",
"main": "src/main.js",
"scripts": {
"postinstall": "electron-builder install-app-deps",
"start": "npm install && electron ./",
"electron": "electron ./",
"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/klayveR/xenontrade#readme",
"bugs": {
"url": "https://github.com/klayveR/xenontrade/issues"
},
"author": {
"name": "Tobias Hoffmann",
"email": "[email protected]",
"url": "http://klayver.de"
},
"repository": {
"type": "git",
"url": "https://github.com/klayveR/xenontrade.git"
},
"license": "MIT",
"dependencies": {
"active-win": "^3.0.0",
"child-process-es6-promise": "^1.2.0",
"clipboardy": "github:klayveR/clipboardy",
"electron-is-dev": "^0.3.0",
"electron-log": "^2.2.17",
"electron-store": "^2.0.0",
"electron-updater": "^3.1.2",
"electron-window-manager": "^1.0.6",
"ffi": "^2.2.0",
"iohook": "^0.2.0",
"jquery": "^3.3.1",
"js-base64": "^2.4.9",
"poe-ninja-api-manager": "^0.7.0",
"promise-fs": "^1.3.0",
"request-promise-native": "^1.0.5",
"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": "de.klayver.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"
],
"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.10",
"electron-builder": "^20.28.3"
}
}