-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 3.1 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 3.1 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
{
"name": "desktopbrowser2",
"version": "1.0.40",
"description": "An Electron application with React and TypeScript",
"main": "./out/main/index.js",
"author": "example.com",
"homepage": "https://electron-vite.org",
"scripts": {
"bump": "npm version patch && git push --follow-tags",
"format": "prettier --write .",
"lint": "eslint . --ext .js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix",
"typecheck:node": "tsc --noEmit -p tsconfig.node.json --composite false",
"typecheck:web": "tsc --noEmit -p tsconfig.web.json --composite false",
"typecheck": "npm run typecheck:node && npm run typecheck:web",
"start": "electron-vite preview",
"dev": "electron-vite dev",
"build": "npm run typecheck && electron-vite build",
"postinstall": "electron-builder install-app-deps",
"build:unpack": "npm run build && electron-builder --dir",
"build:win": "npm run build && electron-builder --win",
"build:mac": "electron-vite build && electron-builder --mac",
"build:linux": "electron-vite build && electron-builder --linux"
},
"dependencies": {
"@electron-toolkit/preload": "^3.0.0",
"@electron-toolkit/utils": "^3.0.0",
"electron-log": "^5.1.1",
"electron-updater": "^6.1.7",
"level": "^9.0.0"
},
"devDependencies": {
"@electron-toolkit/eslint-config-prettier": "^2.0.0",
"@electron-toolkit/eslint-config-ts": "^2.0.0",
"@electron-toolkit/tsconfig": "^1.0.1",
"@emotion/css": "^11.11.2",
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.0",
"@fontsource/roboto": "^5.0.12",
"@mui/icons-material": "^6.1.1",
"@mui/material": "^6.1.1",
"@styled/typescript-styled-plugin": "^1.0.1",
"@types/express": "^5.0.0",
"@types/express-http-proxy": "^1.6.6",
"@types/lodash": "^4.14.202",
"@types/luxon": "^3.4.2",
"@types/node": "^22.7.4",
"@types/react": "^19.0.7",
"@types/react-dom": "^19.0.3",
"@types/ws": "^8.5.10",
"@vitejs/plugin-react": "^4.3.4",
"axios": "^1.6.7",
"bufferutil": "^4.0.8",
"classnames": "^2.5.1",
"electron": "^34.0.0",
"electron-builder": "^25.0.5",
"electron-vite": "^2.3.0",
"eslint": "^8.57.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^5.1.0",
"events": "^3.3.0",
"express": "^4.18.2",
"express-http-proxy": "^2.0.0",
"glob": "^11.0.0",
"immer": "^10.0.3",
"lodash": "^4.17.21",
"luxon": "^3.4.4",
"node-disk-info": "^1.3.0",
"node-vlc-http": "^1.2.0",
"prettier": "^3.2.4",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-router-dom": "^7.1.2",
"reconnecting-websocket": "^4.4.0",
"rimraf": "^6.0.1",
"typescript": "^5.3.3",
"vite": "^5.4.11",
"vite-plugin-svgr": "^4.2.0",
"ws": "^8.16.0"
},
"optionalDependencies": {
"bufferutil": "^4.0.8"
}
}