-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.17 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 2.17 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
75
76
77
78
79
{
"name": "vidbytok",
"productName": "Vidbytok",
"version": "2.0.0",
"description": "Vidbytok (Ukr. «відбиток» — imprint) — one-click desktop website copier in a CRT terminal skin. Paste any URL: it auto-detects the right engine (fast static or headless browser for SPA/Cloudflare), auto-picks crawl depth, and saves a complete offline mirror — HTML, CSS, JS, images, fonts — zipped and ready.",
"main": "src/main.js",
"author": {
"name": "Oleksandr Bilov",
"email": "dominant.creator@gmail.com",
"url": "https://github.com/Dominant-dev"
},
"license": "MIT",
"homepage": "https://github.com/Dominant-dev/vidbytok",
"repository": {
"type": "git",
"url": "https://github.com/Dominant-dev/vidbytok.git"
},
"bugs": {
"url": "https://github.com/Dominant-dev/vidbytok/issues"
},
"keywords": [
"website-downloader",
"site-mirror",
"offline-browsing",
"scraper",
"electron",
"terminal-ui",
"crt",
"ukrainian",
"vidbytok"
],
"scripts": {
"start": "electron .",
"build": "electron-builder --win --x64",
"dist": "electron-builder --win --x64 --publish never"
},
"dependencies": {
"archiver": "^7.0.1",
"website-scraper": "^5.3.1"
},
"devDependencies": {
"electron": "^33.2.0",
"electron-builder": "^25.1.8"
},
"build": {
"appId": "com.dominant.vidbytok",
"productName": "Vidbytok",
"directories": {
"output": "dist",
"buildResources": "assets"
},
"files": [
"src/**/*",
"assets/**/*",
"package.json"
],
"win": {
"target": [
{ "target": "nsis", "arch": ["x64"] },
{ "target": "portable", "arch": ["x64"] }
],
"icon": "assets/icon.ico",
"artifactName": "${productName}-Setup-${version}.${ext}"
},
"nsis": {
"oneClick": false,
"perMachine": false,
"allowToChangeInstallationDirectory": true,
"createDesktopShortcut": true,
"createStartMenuShortcut": true,
"shortcutName": "Vidbytok",
"menuCategory": false,
"runAfterFinish": true
},
"portable": {
"artifactName": "${productName}-Portable-${version}.${ext}"
}
}
}