This repository has been archived by the owner on Jan 22, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 2.24 KB
/
package.json
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
{
"name": "vclinux-welcome",
"description": "Welcome page for VCLinux",
"version": "1.0.0",
"license": "MIT",
"main": "main/index.js",
"repository": "https://github.com/vcborn/vclinux-welcome",
"author": "wamo <[email protected]> (https://github.com/opera7133/)",
"scripts": {
"dev": "concurrently \"npm run dev:vite\" \" npm run dev:electron\"",
"dev:vite": "vite",
"dev:electron": "npm run build:electron && electron .",
"build": "npm run build:vite && npm run build:electron",
"build:vite": "vite build",
"build:electron": "tsc -p electron",
"dist": "npm run build && electron-builder",
"pack": "npm run build && electron-builder --dir",
"clean": "rimraf dist main src/out",
"type-check": "tsc"
},
"dependencies": {
"@vitejs/plugin-react": "^2.2.0",
"electron-is-dev": "^2.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"vite": "^3.2.4"
},
"devDependencies": {
"@fontsource/inter": "^4.5.14",
"@fontsource/noto-sans-jp": "^4.5.12",
"@splidejs/react-splide": "^0.7.12",
"@tailwindcss/forms": "^0.5.3",
"@types/node": "^18.11.9",
"@types/react": "^18.0.25",
"@types/react-dom": "^18.0.9",
"autoprefixer": "^10.4.13",
"concurrently": "^7.5.0",
"electron": "^21.3.0",
"electron-builder": "^23.6.0",
"postcss": "^8.4.19",
"prettier": "2.7.1",
"tailwindcss": "^3.2.4",
"typescript": "^4.9.3"
},
"build": {
"appId": "com.vcborn.vclinux-welcome",
"productName": "vclinux-welcome",
"copyright": "CopyRight © 2022 ${author}",
"asar": true,
"win": {
"icon": "icon.png",
"target": [
{
"target": "portable",
"arch": [
"x64"
]
}
],
"artifactName": "${productName}_${version}_portable.${ext}"
},
"linux": {
"icon": "icon.icns",
"target": [
{
"target": "deb",
"arch": [
"x64"
]
}
]
},
"deb": {
"artifactName": "${productName}_${version}_${arch}.${ext}",
"category": "Utility",
"synopsis": "VCLinux Welcome ${version}"
},
"files": [
"main",
"src/out"
],
"directories": {
"buildResources": "resources"
}
}
}