-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.94 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 1.94 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
{
"name": "lipptv",
"version": "1.0.0",
"description": "Desktop IPTV and streaming player app.",
"main": "dist-electron/electron/main.js",
"author": "lippdev",
"license": "MIT",
"private": true,
"scripts": {
"start": "npm run dev",
"dev": "concurrently -k \"tsc -p tsconfig.main.json --watch\" \"vite\" \"wait-on dist-electron/electron/main.js tcp:5173 && electron .\"",
"build": "npm run build:renderer && npm run build:main",
"build:renderer": "vite build",
"build:main": "tsc -p tsconfig.main.json",
"typecheck": "tsc -p tsconfig.app.json --noEmit && tsc -p tsconfig.main.json --noEmit",
"preview": "vite preview",
"pack": "npm run build && electron-builder --dir",
"dist": "npm run build && electron-builder"
},
"dependencies": {
"@tanstack/react-virtual": "^3.11.1",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"electron-store": "^10.0.1",
"fast-xml-parser": "^4.3.6",
"hls.js": "^1.6.16",
"mpegts.js": "^1.8.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^6.30.1",
"zustand": "^5.0.4"
},
"build": {
"appId": "com.lipptv.desktop",
"productName": "LippTV",
"directories": {
"output": "release"
},
"files": [
"dist/**/*",
"dist-electron/**/*",
"assets/**/*",
"package.json"
],
"asar": true,
"win": {
"icon": "assets/logo.ico",
"target": [
"nsis"
],
"artifactName": "${productName}-Setup-${version}.${ext}"
},
"nsis": {
"oneClick": false,
"perMachine": false,
"allowToChangeInstallationDirectory": true
}
},
"devDependencies": {
"@types/node": "^22.15.3",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"@vitejs/plugin-react": "^4.4.1",
"concurrently": "^9.1.2",
"electron": "^35.2.0",
"electron-builder": "^25.1.8",
"typescript": "^5.8.3",
"vite": "^6.3.5",
"wait-on": "^8.0.3"
}
}