-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
47 lines (47 loc) · 1.29 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
{
"name": "lol-run-it-back",
"author": {
"email": "[email protected]",
"name": "Dejan Lukic",
"url": "https://github.com/dejan9393"
},
"description": "A simple tool to let you watch LoL replays while match history is down",
"version": "0.0.2",
"scripts": {
"dev": "electron-webpack dev",
"test": "mocha --require ts-node/register test/*.spec.ts",
"start": "electron .",
"compile": "electron-webpack",
"dist": "yarn compile && electron-builder -mw --ia32 --x64"
},
"main": "dist/main.js",
"dependencies": {
"@material/mwc-button": "^0.14.1",
"@material/mwc-textfield": "^0.14.1",
"inquirer": "^7.1.0",
"kleur": "^3.0.3",
"lcu-connector": "^2.1.3",
"node-fetch": "^2.6.1",
"source-map-support": "^0.5.16"
},
"devDependencies": {
"@types/chai": "^4.2.11",
"@types/mocha": "^7.0.2",
"@types/node": "12",
"@types/node-fetch": "^2.5.5",
"chai": "^4.2.0",
"electron": "^9.4.0",
"electron-builder": "^22.4.1",
"electron-webpack": "^2.8.2",
"electron-webpack-ts": "^4.0.1",
"lit-element": "^2.3.1",
"mocha": "^7.1.1",
"ts-node": "^8.8.2",
"typescript": "^3.8.3",
"webpack": "^4.42.1"
},
"build": {
"productName": "LoL Run It Back",
"appId": "com.lol-run-it-back"
}
}