-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
124 lines (124 loc) · 3.34 KB
/
Copy pathpackage.json
File metadata and controls
124 lines (124 loc) · 3.34 KB
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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "openstroid",
"private": true,
"version": "0.1.1",
"packageManager": "npm@11.16.0",
"description": "Open-source cloud gaming client",
"author": {
"name": "zortos293",
"email": "zortos293@users.noreply.github.com"
},
"type": "module",
"main": "build/electron/electron/main.js",
"scripts": {
"dev": "node tools/run-electron-dev.mjs",
"dev:web": "vite",
"dev:backend": "tsx watch server/index.ts",
"build": "tsc -b && tsc -p tsconfig.server.json && tsc -p tsconfig.electron.json && vite build",
"dist": "npm run build && electron-builder",
"lint": "eslint .",
"test": "node --import tsx --test electron/*.test.ts",
"test:stream-color": "tsx tools/stream-color.test.ts",
"test:ui": "node tools/ui-smoke.mjs",
"preview": "vite preview",
"start": "electron build/electron/electron/main.js",
"start:backend": "node build/server/server/index.js",
"postinstall": "node tools/fix-electron-install.cjs"
},
"dependencies": {
"axios": "^1.15.0",
"cookie-parser": "^1.4.7",
"express": "^5.2.1",
"qrcode": "^1.5.4"
},
"devDependencies": {
"@electron/get": "^2.0.3",
"@eslint/js": "^9.39.4",
"@mantine/core": "^9.0.2",
"@mantine/hooks": "^9.0.2",
"@mantine/notifications": "^9.0.2",
"@tabler/icons-react": "^3.41.1",
"@types/cookie-parser": "^1.4.10",
"@types/express": "^5.0.6",
"@types/node": "^24.12.2",
"@types/qrcode": "^1.5.6",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.1",
"electron": "37.10.3",
"electron-builder": "^26.15.3",
"eslint": "^9.39.4",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.5.2",
"globals": "^17.4.0",
"extract-zip": "^2.0.1",
"lucide-react": "^1.22.0",
"playwright": "^1.53.1",
"postcss": "^8.5.9",
"postcss-preset-mantine": "^1.18.0",
"postcss-simple-vars": "^7.0.1",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-router-dom": "^7.14.0",
"tsx": "^4.21.0",
"typescript": "~6.0.2",
"typescript-eslint": "^8.58.0",
"vite": "^8.0.4"
},
"trustedDependencies": [
"electron"
],
"build": {
"appId": "ai.capy.openstroid",
"productName": "OpenStroid",
"publish": [
{
"provider": "github",
"owner": "OpenCloudGaming",
"repo": "OpenStroid"
}
],
"icon": "logo.png",
"npmRebuild": false,
"nodeGypRebuild": false,
"buildDependenciesFromSource": false,
"directories": {
"output": "dist-release"
},
"files": [
"dist/**",
"build/electron/**",
"package.json"
],
"asar": true,
"win": {
"target": [
"nsis",
"portable"
]
},
"nsis": {
"artifactName": "OpenStroid-v${version}-setup-${arch}.${ext}"
},
"portable": {
"artifactName": "OpenStroid-v${version}-portable-${arch}.${ext}"
},
"mac": {
"target": [
"dmg",
"zip"
],
"category": "public.app-category.games",
"artifactName": "OpenStroid-v${version}-mac-${arch}.${ext}"
},
"linux": {
"target": [
"AppImage",
"deb"
],
"category": "Game",
"maintainer": "zortos293 <zortos293@users.noreply.github.com>",
"artifactName": "OpenStroid-v${version}-linux-${arch}.${ext}"
}
}
}