-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
40 lines (40 loc) · 1.22 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
{
"name": "wp-downloader-electron",
"version": "1.0.0",
"description": "WP-Downloader Wrapped in Electron",
"main": "index.js",
"scripts": {
"dev": "electron index.js",
"test": "echo \"Error: no test specified\" && exit 1",
"format": "prettier --write .",
"lint": "eslint . --ext .js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix",
"postinstall": "electron-builder install-app-deps",
"build:unpack": "electron-builder --dir",
"build:win": "electron-builder --win",
"build:mac": "electron-builder --mac",
"build:linux": "electron-builder --linux"
},
"author": "Dragon Corp",
"license": "SEE LICENSE IN LICENSE.md",
"devDependencies": {
"@electron-toolkit/eslint-config": "^1.0.2",
"@electron-toolkit/eslint-config-prettier": "^2.0.0",
"electron": "^33.2.0",
"electron-builder": "^25.1.8",
"eslint": "^9.14.0",
"install": "^0.13.0",
"prettier": "^3.3.3"
},
"dependencies": {
"@electron-toolkit/preload": "^3.0.1",
"@electron-toolkit/utils": "^3.0.0",
"axios": "^1.7.7",
"electron-updater": "^6.3.9",
"express": "^4.21.1",
"jsdom": "^25.0.1",
"jszip": "^3.10.1",
"node-cache": "^5.1.2",
"pug": "^3.0.3",
"sanitize-html": "^2.13.1"
}
}