-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
120 lines (120 loc) · 2.91 KB
/
Copy pathpackage.json
File metadata and controls
120 lines (120 loc) · 2.91 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
{
"name": "captureplayer",
"version": "0.4.0",
"description": "Electron + Vite + React + Tailwind CapturePlayer – Play your capture card instantly and share with Discord.",
"author": {
"name": "galusperes"
},
"license": "MIT",
"main": "dist-electron/index.js",
"productName": "CapturePlayer",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"dist": "npm run build && electron-builder",
"lint": "eslint . --ext ts,tsx --max-warnings 0"
},
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@types/node": "22.19.17",
"@types/react": "18.3.28",
"@types/react-dom": "18.3.7",
"@typescript-eslint/eslint-plugin": "^6.10.0",
"@typescript-eslint/parser": "^6.10.0",
"@vitejs/plugin-react": "6.0.1",
"autoprefixer": "^10.4.16",
"electron": "42.4.0",
"electron-builder": "26.8.1",
"esbuild": "0.28.0",
"eslint": "^8.57.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "2.32.0",
"eslint-plugin-jsx-a11y": "6.10.2",
"eslint-plugin-prettier": "5.5.5",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "4.6.2",
"postcss": "^8.4.35",
"prettier": "^3.2.4",
"tailwindcss": "^3.4.4",
"typescript": "5.9.3",
"vite": "8.0.5",
"vite-plugin-electron": "0.29.1",
"vite-plugin-electron-renderer": "^0.14.6"
},
"build": {
"asar": true,
"publish": {
"provider": "github",
"publishAutoUpdate": false
},
"electronLanguages": [
"en-US",
"de"
],
"files": [
"dist-electron/**",
"dist-vite/**"
],
"directories": {
"buildResources": "resources"
},
"win": {
"icon": "src/assets/icons/icon.ico",
"target": [
{
"target": "nsis",
"arch": [
"x64"
]
},
"portable"
]
},
"nsis": {
"artifactName": "${productName}.Setup.${version}.${ext}",
"differentialPackage": false,
"oneClick": false,
"allowToChangeInstallationDirectory": true
},
"portable": {
"artifactName": "${productName}.${version}.portable.${ext}"
},
"appImage": {
"artifactName": "${productName}.${version}.${ext}"
},
"dmg": {
"artifactName": "${productName}.${version}.${arch}.${ext}",
"writeUpdateInfo": false
},
"mac": {
"icon": "src/assets/icons/icon.png",
"category": "public.app-category.entertainment",
"identity": null,
"target": [
{
"target": "dmg",
"arch": [
"arm64"
]
}
]
},
"linux": {
"icon": "src/assets/icons/icon.png",
"category": "AudioVideo",
"target": [
{
"target": "AppImage",
"arch": [
"x64"
]
}
]
}
}
}