-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.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
{
"name": "riot-hackathon",
"version": "0.1.0",
"description": "Electron app that hooks into the new LoL client (LCU)",
"private": true,
"keywords": [
"lcu",
"league",
"lol"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/lol-matchmaker/riot-hackathon.git"
},
"bugs": {
"url": "https://github.com/lol-matchmaker/riot-hackathon/issues"
},
"dependencies": {
"electron-updater": "^3.1.6",
"request": "^2.88.0",
"request-promise-native": "^1.0.5",
"source-map-support": "^0.5.9",
"ws": "^6.1.0"
},
"devDependencies": {
"electron": "^4.0.0-beta6",
"electron-builder": "^20.31.2",
"electron-webpack": "2.3.1",
"electron-webpack-ts": "^3.0.0",
"electron-webpack-vue": "^2.2.2",
"element-ui": "^2.4.9",
"node-sass": "^4.10.0",
"sass-loader": "^7.1.0",
"tslint": "^5.11.0",
"typescript": "^3.1.6",
"vuex": "^3.0.1",
"vue": "^2.5.17",
"webpack": "^4.25.0",
"@types/node": "^10.12.2",
"@types/request": "^2.48.1",
"@types/request-promise-native": "^1.0.15",
"@types/webpack": "^4.4.17",
"@types/ws": "^6.0.1"
},
"main": "lib/index.js",
"typings": "lib/index",
"scripts": {
"dev": "electron-webpack dev",
"compile": "electron-webpack",
"dist": "npm run compile && electron-builder",
"dist:dir": "npm run dist --dir -c.compression=store -c.mac.identity=null"
},
"build": {
"appId": "com.lolhack.app",
"productName": "LoLHack",
"mac": {
"category": "public.app-category.utilities"
}
}
}