-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.13 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
{
"name": "easyrunes",
"productName": "EasyRunes",
"version": "1.0.16",
"description": "Automate runes selection process for League of Legends",
"main": "app/js/main.js",
"scripts": {
"start": "electron .",
"build": "electron-builder --win nsis portable",
"watch:css": "npx tailwindcss -i ./src/tailwind.css -o ./app/css/styles.css --watch",
"build:css": "npx tailwindcss -i ./src/tailwind.css -o ./app/css/styles.css --minify"
},
"author": {
"name": "Low Yiyiu",
"url": "https://github.com/lowyiyiu"
},
"license": "MIT",
"devDependencies": {
"electron": "^22.0.0",
"electron-builder": "^23.6.0",
"tailwindcss": "^3.2.1"
},
"dependencies": {
"electron-json-storage": "^4.6.0",
"electron-window-state": "^5.0.3",
"freezer-js": "^0.14.1",
"lcu-connector": "^2.1.3",
"request": "^2.88.2",
"ws": "^8.10.0"
},
"build": {
"artifactName": "${productName}_${version}.${ext}",
"win": {
"icon": "build/icon.ico",
"target": [
"portable"
]
},
"portable": {
"artifactName": "${productName}_${version}_portable.${ext}"
}
}
}