-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
113 lines (113 loc) · 3.19 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
{
"name": "tribeslauncher",
"productName": "tribeslauncher",
"version": "1.0.4",
"description": "My Electron application description",
"main": "src/main/index.ts",
"scripts": {
"start": "electron-forge start",
"package": "electron-forge package --platform=win32 --arch=ia32",
"make": "electron-forge make --platform=win32 --arch=ia32 --asar=true",
"installer": "node createInstaller.js",
"publish": "electron-forge publish",
"lint": "tslint --project tsconfig.json --type-check --force",
"updaterTest": "ts-node ./src/common/updaterTest.ts",
"injectorTest": "ts-node ./src/common/injectorTest.ts"
},
"keywords": [],
"author": "Joseph Spearritt",
"license": "MIT",
"config": {
"forge": {
"make_targets": {
"win32": [
"squirrel"
],
"darwin": [
"zip"
],
"linux": [
"deb",
"rpm"
]
},
"electronPackagerConfig": {
"packageManager": "yarn",
"asar": true,
"icon": "./src/main/icon.ico"
},
"electronWinstallerConfig": {
"name": "tribeslauncher"
},
"electronInstallerDebian": {},
"electronInstallerRedhat": {},
"github_repository": {
"owner": "",
"name": ""
},
"windowsStoreConfig": {
"packageName": "",
"name": "tribeslauncher"
}
}
},
"dependencies": {
"@types/command-line-args": "^4.0.2",
"@types/download": "^6.2.2",
"@types/electron-devtools-installer": "^2.0.2",
"@types/fs-extra": "^5.0.1",
"@types/howler": "^2.0.5",
"@types/ini": "^1.3.29",
"@types/node": "^9.6.1",
"@types/react": "^0.14.55",
"@types/react-dom": "^0.14.20",
"@types/react-hot-loader": "^4.1.0",
"@types/semantic-ui": "^2.2.6",
"@types/semver": "^5.5.0",
"@types/winreg": "^1.2.30",
"@types/xml-parser": "^1.2.29",
"async-child-process": "^1.1.1",
"command-line-args": "^5.0.2",
"download": "^6.2.5",
"electron-compile": "^6.4.2",
"electron-devtools-installer": "^2.1.0",
"electron-redux": "^1.3.1",
"electron-settings": "^3.1.4",
"electron-squirrel-startup": "^1.0.0",
"fs-extra": "^5.0.0",
"fs-promise": "^2.0.3",
"howler": "^2.0.9",
"ini": "^1.3.5",
"is-admin": "^2.1.1",
"jsonschema": "^1.2.4",
"node-dll-injector": "^0.2.3",
"npm": "^5.8.0",
"react": "^15.4.1",
"react-dom": "^15.4.1",
"react-hot-loader": "^3.0.0-beta.6",
"react-markdown": "^3.3.0",
"react-progressbar.js": "^0.2.0",
"rmfr": "^2.0.0",
"runas": "^3.1.1",
"semantic-ui-offline": "^2.2.1-3.4",
"semantic-ui-react": "^0.79.1",
"semver": "^5.5.0",
"ts-fs-promise": "^1.0.4",
"tslib": "^1.4.0",
"typed-react-markdown": "^0.1.0",
"winreg": "^1.2.4",
"xml2js": "^0.4.19"
},
"devDependencies": {
"awesome-typescript-loader": "^5.0.0",
"babel-plugin-transform-async-to-generator": "^6.24.1",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"electron-forge": "^5.1.1",
"electron-prebuilt-compile": "1.8.4",
"electron-winstaller": "^2.6.4",
"ts-node": "^5.0.1",
"tslint": "^5.1.0",
"typescript": "^2.8.1"
}
}