-
Notifications
You must be signed in to change notification settings - Fork 39
/
package.json
88 lines (88 loc) · 2.1 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
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
80
81
82
83
84
85
86
87
88
{
"name": "tiktok-downloader",
"productName": "TikDown",
"description": "Electron version downloader to download TikTok/Douyin video.",
"keywords": [
"TikTok",
"Douyin",
"video",
"downloader"
],
"main": "./main.js",
"version": "1.2.2",
"author": "Tairraos",
"license": "MIT",
"scripts": {
"start": "electron ./main.js",
"debug": "electron --inspect=8888 ./main.js",
"buildsvg": "node tool/buildSvgSymbol.js",
"buildicon": "electron-icon-builder --input=./build/favicon.png --output=build --flatten",
"buildbackground": "tiffutil -cathidpicheck build/background.png build/[email protected] -out build/background.tiff",
"shasum": "shasum -a 256 dist/TikDown-*.dmg",
"build:mac": "electron-builder --mac",
"build:win": "electron-builder --win"
},
"dependencies": {
"electron-settings": "^4.0.2",
"node-downloader-helper": "^2.1.3"
},
"devDependencies": {
"cheerio": "^1.0.0-rc.11",
"electron": "19.0.1",
"electron-builder": "^23.0.3",
"electron-icon-builder": "^2.0.1"
},
"build": {
"appId": "com.tairraos.tikdown",
"productName": "TikDown",
"copyright": "Copyright © 2022 Tairraos",
"compression": "maximum",
"directories": {
"buildResources": "build",
"output": "dist"
},
"asar": true,
"mac": {
"target": [
"dmg",
"zip"
],
"category": "public.app-category.utilities"
},
"dmg": {
"icon": "build/icon.icns",
"iconSize": 128,
"background": "build/background.tiff",
"contents": [
{
"x": 134,
"y": 289,
"type": "file"
},
{
"x": 405,
"y": 289,
"type": "link",
"path": "/Applications"
}
],
"window": {
"width": 540,
"height": 490
}
},
"win": {
"target": [
"portable",
"nsis"
],
"icon": "build/icon.ico"
},
"nsis": {
"oneClick": false,
"language": "2052",
"perMachine": true,
"allowToChangeInstallationDirectory": true
}
}
}