-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.67 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 1.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
{
"name": "wsl-cleaner",
"version": "1.8.0",
"description": "Clean and reclaim disk space from WSL2",
"main": "main.js",
"bin": {
"wsl-cleaner": "./cli.js"
},
"scripts": {
"start": "electron .",
"cli": "node cli.js",
"build": "electron-builder --win",
"test": "vitest run",
"test:watch": "vitest",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"release": "node scripts/release.js",
"translate": "node scripts/translate.js"
},
"author": "dbfx",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/dbfx/wsl-cleaner"
},
"build": {
"appId": "com.dbfx.wsl-cleaner",
"productName": "WSL Cleaner",
"publish": [
{
"provider": "github",
"owner": "dbfx",
"repo": "wsl-cleaner"
}
],
"files": [
"main.js",
"cli.js",
"preload.js",
"lib/**/*",
"renderer/**/*",
"assets/**/*",
"locales/**/*"
],
"directories": {
"output": "dist"
},
"win": {
"target": "nsis",
"icon": "assets/icon.ico"
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true,
"installerIcon": "assets/icon.ico",
"uninstallerIcon": "assets/icon.ico"
}
},
"overrides": {
"@conventional-changelog/git-client": "^2.0.0"
},
"devDependencies": {
"chart.js": "^4.5.1",
"conventional-changelog-cli": "^5.0.0",
"dotenv": "^17.3.1",
"electron": "^40.4.1",
"electron-builder": "^26.0.0",
"openai": "^6.22.0",
"vitest": "^4.0.18"
},
"dependencies": {
"electron-log": "^5.4.3",
"electron-updater": "^6.7.3"
}
}