-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 1.25 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
{
"name": "bedownloader",
"productName": "BeDownloader",
"version": "2.4.0",
"author": "ViRT1ST",
"license": "ISC",
"description": "",
"keywords": [],
"repo": "https://github.com/ViRT1ST/BeDownloader.git",
"type": "module",
"main": "dist/main.js",
"scripts": {
"build": "tsc && cpy src/static/* dist/static && cpy src/static/icons/* dist/static/icons",
"start": "npx electron dist/main.js",
"dev": "npm run build && npm run start",
"package-win": "npm run build && npx @electron/packager . --overwrite --platform=win32 --dir=dist --arch=x64 --icon=src/static/icons/win/icon.ico --prune=true --out=release-builds --version-string.CompanyName=CE --version-string.FileDescription=CE --version-string.ProductName=\"BeDownloader\""
},
"dependencies": {
"ini": "^5.0.0",
"node-fetch": "^3.3.2",
"piexif-ts": "^2.1.0",
"puppeteer": "^23.11.1",
"transliteration": "^2.3.5"
},
"devDependencies": {
"@electron/packager": "^18.3.6",
"@types/ini": "^4.1.1",
"@types/node": "^22.10.2",
"@typescript-eslint/eslint-plugin": "^8.19.0",
"@typescript-eslint/parser": "^8.19.0",
"cpy-cli": "^5.0.0",
"electron": "^33.2.1",
"eslint": "^8.57.1",
"tsx": "^4.19.2",
"typescript": "^5.7.2"
}
}