forked from unknownskl/greenlight
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 2 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.2.0",
"author": "UnknownSKL <[email protected]>",
"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.41.2",
"axios": "^1.6.7",
"compare-versions": "^6.1.0",
"debug": "^4.3.4",
"electron-serve": "^1.3.0",
"electron-store": "^8.0.1",
"express": "^4.18.3",
"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": "^0.2.0",
"xbox-webapi": "^1.4.1",
"xbox-xcloud-player": "^0.2.10",
"xvfb-maybe": "^0.2.1"
},
"devDependencies": {
"@babel/core": "^7.23.9",
"@fortawesome/fontawesome-free": "^6.5.1",
"@next/eslint-plugin-next": "^14.1.0",
"@types/node": "^20.11.24",
"@types/react": "^18.2.47",
"@typescript-eslint/eslint-plugin": "^6.19.1",
"@typescript-eslint/parser": "^6.21.0",
"babel-loader": "^9.1.3",
"electron": "28",
"electron-builder": "^24.12.0",
"eslint": "^8.57.0",
"next": "^13.5.6",
"nextron": "^8.13.0",
"node-loader": "^2.0.0",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"typescript": "^5.3.3"
}
}