-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.92 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 1.92 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
{
"name": "wsl-manager",
"version": "1.1.1",
"description": "A modern desktop application for managing WSL (Windows Subsystem for Linux) distributions",
"main": "./out/main/index.js",
"scripts": {
"dev": "electron-vite dev",
"build": "electron-vite build",
"preview": "electron-vite preview",
"pack": "electron-vite build && electron-packager . \"WSL Manager\" --platform=win32 --arch=x64 --out=release --overwrite --asar --icon=build/icon.ico",
"dist": "electron-vite build && electron-packager . \"WSL Manager\" --platform=win32 --arch=x64 --out=release --overwrite --asar --icon=build/icon.ico"
},
"keywords": [
"wsl",
"windows",
"linux",
"electron",
"desktop",
"manager"
],
"author": "",
"license": "MIT",
"homepage": "https://github.com/modiao2018/WSL-Manager",
"repository": {
"type": "git",
"url": "https://github.com/modiao2018/WSL-Manager.git"
},
"type": "commonjs",
"build": {
"appId": "com.wsl-manager.app",
"productName": "WSL Manager",
"win": {
"target": [
"portable"
],
"icon": null
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true,
"shortcutName": "WSL Manager"
},
"directories": {
"output": "release"
},
"files": [
"out/**/*"
]
},
"devDependencies": {
"@electron-toolkit/preload": "^3.0.2",
"@electron-toolkit/utils": "^4.0.0",
"@electron/packager": "^20.0.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^4.7.0",
"electron": "^41.3.0",
"electron-builder": "^26.8.1",
"electron-vite": "^5.0.0",
"png-to-ico": "^3.0.1",
"sharp": "^0.34.5",
"typescript": "^6.0.3"
},
"dependencies": {
"@ant-design/icons": "^6.1.1",
"antd": "^6.3.6",
"i18next": "^26.0.7",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"react-i18next": "^17.0.4"
}
}