-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
114 lines (114 loc) · 2.67 KB
/
package.json
File metadata and controls
114 lines (114 loc) · 2.67 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
{
"name": "scriptplayer-plus",
"version": "0.1.5",
"description": "ScriptPlayer+ - Funscript video player with Handy, Intiface, and FunOSR support",
"author": "sioaeko <grade0422@gmail.com>",
"license": "PolyForm-Noncommercial-1.0.0",
"main": "dist-electron/main.js",
"scripts": {
"dev": "vite",
"preview": "vite preview",
"electron:dev": "concurrently \"vite\" \"wait-on http://localhost:5173 && electron .\"",
"build:linux": "vite build && electron-builder --linux",
"build:win": "vite build && electron-builder --win && node scripts/set-icon.js",
"build:mac": "vite build && electron-builder --mac",
"build:all": "vite build && electron-builder --win --mac"
},
"dependencies": {
"lucide-react": "^0.460.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"serialport": "^13.0.0"
},
"devDependencies": {
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@vitejs/plugin-react": "^4.3.4",
"autoprefixer": "^10.4.20",
"concurrently": "^9.1.0",
"electron": "^33.2.0",
"electron-builder": "^25.1.8",
"postcss": "^8.4.49",
"tailwindcss": "^3.4.15",
"typescript": "^5.6.3",
"vite": "^6.0.3",
"vite-plugin-electron": "^0.28.8",
"vite-plugin-electron-renderer": "^0.14.6",
"wait-on": "^8.0.1"
},
"build": {
"appId": "com.scriptplayerplus.app",
"productName": "ScriptPlayerPlus",
"icon": "public/icon.png",
"asarUnpack": [
"node_modules/@serialport/**/*"
],
"directories": {
"output": "release"
},
"files": [
"dist/**/*",
"dist-electron/**/*"
],
"win": {
"target": [
{
"target": "dir",
"arch": [
"x64"
]
}
],
"icon": "public/icon.ico",
"signAndEditExecutable": false
},
"mac": {
"target": [
{
"target": "zip",
"arch": [
"x64",
"arm64"
]
}
],
"icon": "public/icon.icns",
"category": "public.app-category.entertainment"
},
"linux": {
"target": [
{
"target": "AppImage",
"arch": [
"x64"
]
},
{
"target": "dir",
"arch": [
"x64"
]
}
],
"icon": "public/icon.png",
"category": "AudioVideo"
},
"dmg": {
"contents": [
{
"x": 130,
"y": 220
},
{
"x": 410,
"y": 220,
"type": "link",
"path": "/Applications"
}
]
},
"portable": {
"artifactName": "ScriptPlayer+-${version}-portable.${ext}"
}
}
}