-
-
Notifications
You must be signed in to change notification settings - Fork 127
/
package.json
62 lines (62 loc) · 1.99 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
{
"private": true,
"name": "greenlight",
"description": "Greenlight is a streaming application for Xbox and xCloud",
"version": "2.3.1",
"author": "UnknownSKL <info+github@jimkroon.nl>",
"main": "app/background.js",
"repository": {
"type": "git",
"url": "git+https://github.com/unknownskl/greenlight.git"
},
"scripts": {
"dev": "DEBUG=greenlight:* nextron",
"build": "nextron build",
"lint": "eslint . --ext .ts && eslint renderer/ --ext .tsx",
"lint:fix": "eslint . --ext .ts --fix && eslint renderer/ --ext .tsx --fix",
"test": "CI=true nextron build --no-pack && CI=true xvfb-maybe -- playwright test -c playwright.config.ts",
"test-serve": "npx http-server app/ -p 3000",
"postinstall": "electron-builder install-app-deps",
"publish": "electron-builder -p onTag",
"flatpak-build": "nextron build --no-pack && electron-builder --dir"
},
"dependencies": {
"@playwright/test": "^1.47.0",
"axios": "^1.6.8",
"compare-versions": "^6.1.0",
"debug": "^4.3.4",
"electron-serve": "^1.3.0",
"electron-store": "^8.0.1",
"express": "^4.19.2",
"express-http-proxy": "^2.0.0",
"express-ws": "^5.0.2",
"github-url-to-object": "^4.0.6",
"ip-address": "^9.0.5",
"playwright": "^1.40.0",
"react-query": "^3.39.3",
"uplot": "^1.6.30",
"xal-node": "^1.0.2",
"xbox-webapi": "^1.4.1",
"xbox-xcloud-player": "^0.2.11",
"xvfb-maybe": "^0.2.1"
},
"devDependencies": {
"@babel/core": "^7.24.4",
"@fortawesome/fontawesome-free": "^6.5.2",
"@next/eslint-plugin-next": "^14.2.2",
"@types/node": "^20.14.2",
"@types/react": "^18.2.47",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^6.21.0",
"babel-loader": "^9.1.3",
"electron": "30",
"electron-builder": "^24.13.3",
"eslint": "^8.57.0",
"next": "^13.5.6",
"nextron": "^8.15.0",
"node-loader": "^2.0.0",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"typescript": "^5.4.5"
}
}