-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
109 lines (109 loc) · 3.3 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
{
"name": "league-observer-tool",
"version": "6.12.3",
"description": "An addition to the league-prod-toolkit for the observer PC",
"author": {
"name": "Riot Community Volunteers"
},
"license": "MIT",
"repository": "https://github.com/RCVolus/league-observer-tool",
"keywords": [
"League",
"production",
"observer"
],
"main": "./build/index.js",
"scripts": {
"watch": "tsc -w -p ./tsconfig.e.json",
"lint": "eslint -c .eslintrc --ext .ts ./electron",
"start": "npm run build:backend && npm run build:frontend && electron --trace-warnings ./build/index.js",
"svelte-build": "rollup -c",
"dev": "rollup -c -w",
"svelte-start": "sirv public",
"build:loader": "cd loader && npm run build",
"build:frontend": "cd frontend && npm run build",
"build:backend": "tsc -p ./tsconfig.json",
"dist": "npm run build:loader && npm run build:frontend && npm run build:backend && electron-builder build -w --publish=never",
"postinstall": "electron-builder install-app-deps"
},
"build": {
"forceCodeSigning": false,
"appId": "gg.rcv.league-observer-tool",
"productName": "League Observer Tool",
"copyright": "Copyright © 2023 Riot Community Volunteers",
"win": {
"target": "nsis",
"icon": "assets/icons/icon.ico",
"publisherName": "Riot Community Volunteers",
"verifyUpdateCodeSignature": false,
"publish": [
"github"
]
},
"nsis": {
"allowToChangeInstallationDirectory": true,
"oneClick": false,
"perMachine": true,
"installerIcon": "assets/icons/icon.ico",
"deleteAppDataOnUninstall": true,
"menuCategory": true,
"shortcutName": "League Observer Tool",
"artifactName": "League-Observer-Tool-Setup-v${version}.${ext}"
},
"files": [
"build/**/*",
"frontend/public/**/*",
"loader/public/**/*",
"node_modules/**/*",
"package.json",
"riotgames.pem"
],
"extraResources": [
"assets/**/*"
],
"fileAssociations": {
"ext": "rofl",
"name": "League Observer Tool"
}
},
"devDependencies": {
"@rollup/plugin-commonjs": "^28.0.2",
"@rollup/plugin-node-resolve": "^16.0.0",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.1.2",
"@tsconfig/svelte": "^5.0.4",
"@types/express": "^5.0.0",
"@types/ini": "^4.1.1",
"@types/uniqid": "^5.3.4",
"@typescript-eslint/eslint-plugin": "^7.16.1",
"@typescript-eslint/parser": "^7.18.0",
"electron": "^32.0.1",
"electron-builder": "^24.13.3",
"eslint": "^8.57.0",
"rollup": "^4.32.0",
"rollup-plugin-css-only": "^4.5.2",
"rollup-plugin-livereload": "^2.0.5",
"rollup-plugin-svelte": "^7.2.2",
"sass": "^1.83.4",
"sirv-cli": "^3.0.0",
"svelte": "^3.59.2",
"svelte-check": "^3.8.6",
"svelte-preprocess": "^5.1.3",
"sveltestrap": "^5.11.3",
"tslib": "^2.8.1",
"typescript": "^5.7"
},
"dependencies": {
"@floh22/farsight": "github:floh22/native-farsight-module",
"@hurdlegroup/robotjs": "^0.12.2",
"electron-fetch": "^1.9.1",
"electron-log": "^4.4.8",
"electron-store": "^8.1.0",
"electron-updater": "^6.3.9",
"express": "^4.21.2",
"ini": "^5.0.0",
"league-connect": "^5.5.0",
"uniqid": "^5.4.0",
"ws": "^8.18.0"
}
}