-
-
Notifications
You must be signed in to change notification settings - Fork 78
Expand file tree
/
Copy pathpackage.json
More file actions
122 lines (122 loc) · 3.08 KB
/
Copy pathpackage.json
File metadata and controls
122 lines (122 loc) · 3.08 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
{
"main": "electron/main.cjs",
"name": "Rein",
"version": "0.1.0",
"description": "Rein Desktop Streaming Server",
"author": "AOSSIE",
"private": true,
"type": "module",
"scripts": {
"predev": "biome check . --write",
"dev": "vite dev --host",
"start": "vite preview --host --open",
"build": "vite build",
"electron": "npx electron .",
"electron-dev": "concurrently \"vite\" \"wait-on http://localhost:3000 && VITE_DEV_SERVER_URL=http://localhost:3000 electron .\"",
"dist": "electron-builder",
"preview": "vite preview",
"test": "vitest run",
"check": "biome check .",
"check:fix": "biome check . --write",
"postinstall": "node scripts/install-gstreamer.js"
},
"dependencies": {
"@tanstack/react-router": "^1.169.2",
"@tanstack/react-router-ssr-query": "^1.166.12",
"@tanstack/react-start": "^1.167.61",
"@tanstack/router-plugin": "^1.167.32",
"dbus-next": "^0.10.2",
"eventsource": "^4.1.0",
"koffi": "^2.16.2",
"lucide-react": "^0.561.0",
"nitro": "^3.0.260429-beta",
"nitro-nightly": "^3.0.1-20260501-164602-aee73f19",
"qrcode": "^1.5.4",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"react-icons": "^5.5.0",
"recharts": "^3.10.0",
"werift": "^0.23.0",
"winston": "^3.19.0",
"ws": "^8.18.0"
},
"devDependencies": {
"@biomejs/biome": "^2.4.14",
"@rolldown/plugin-babel": "^0.2.3",
"@tailwindcss/postcss": "^4.1.18",
"@tailwindcss/typography": "^0.5.19",
"@tanstack/devtools-vite": "^0.6.0",
"@tanstack/react-devtools": "^0.10.2",
"@tanstack/react-router-devtools": "^1.132.0",
"@testing-library/dom": "^10.4.0",
"@testing-library/react": "^16.2.0",
"@types/node": "^22.10.2",
"@types/qrcode": "^1.5.5",
"@types/react": "^19.2.0",
"@types/react-dom": "^19.2.0",
"@types/ws": "^8.5.14",
"@vitejs/plugin-react": "^5.2.0",
"autoprefixer": "^10.4.23",
"babel-plugin-react-compiler": "^1.0.0",
"concurrently": "^9.2.1",
"daisyui": "^5.5.14",
"electron": "^40.6.1",
"electron-builder": "^26.8.1",
"jsdom": "^27.0.0",
"postcss": "^8.5.6",
"tailwindcss": "^4.2.4",
"tsx": "^4.19.0",
"typescript": "^5.7.2",
"vite": "^8.0.10",
"vite-tsconfig-paths": "^6.0.2",
"vitest": "^3.0.5",
"wait-on": "^9.0.4"
},
"build": {
"appId": "com.rein.app",
"productName": "Rein",
"asar": true,
"asarUnpack": [
".output/**/*",
"node_modules/koffi/**/*",
"node_modules/tslib/**/*"
],
"extraResources": [
{
"from": "bin",
"to": "bin"
},
{
"from": "src/server-config.json",
"to": "src/server-config.json"
}
],
"files": [
".output/**/*",
"electron/**/*",
"package.json",
"node_modules/koffi/**/*",
"node_modules/tslib/**/*",
"src/server-config.json"
],
"npmRebuild": false,
"linux": {
"target": "AppImage",
"icon": "brand/Media-Assets/Icons/Icon512.png"
},
"win": {
"target": "nsis",
"icon": "brand/Media-Assets/Icons/Icon512.png"
},
"mac": {
"target": "dmg",
"icon": "brand/Media-Assets/Icons/Icon512.png"
}
},
"allowScripts": {
"electron-winstaller@5.4.0": true,
"esbuild@0.28.2": true,
"electron@40.10.6": true,
"koffi@2.16.3": true
}
}