-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
65 lines (65 loc) · 1.76 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
{
"name": "yt-dlandcut",
"version": "3.0.0",
"description": "Download and Cut an Youtube video by its starting and ending times",
"repository": "github:markkop/yt-dlandcut",
"main": "build/electron/main.js",
"scripts": {
"postinstall": "electron-builder install-app-deps",
"start": "export DEV=true && yarn transpile && electron . --trace-warnings",
"transpile": "babel src --out-dir build",
"pack": "electron-builder --dir",
"build": "yarn transpile && electron-builder",
"release": "yarn transpile && electron-builder --win --linux --mac",
"release:ci": "yarn transpile && electron-builder --win --linux"
},
"keywords": [
"youtube-dl",
"ffmpeg",
"electron",
"travisci"
],
"author": "Marcelo 'Mark' Kopmann <[email protected]> (https://markkop.dev)",
"license": "GPL-3.0-or-later",
"dependencies": {
"@babel/plugin-transform-runtime": "^7.22.9",
"@babel/runtime": "^7.22.6",
"axios": "^0.19.2",
"electron-context-menu": "^1.0.0",
"fluent-ffmpeg": "^2.1.2",
"ytdl-core": "^4.11.5"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/node": "^7.8.7",
"@babel/preset-env": "^7.9.0",
"electron": "^25.4.0",
"electron-builder": "^24.6.3"
},
"optionalDependencies": {
"dmg-license": "^1.0.11"
},
"build": {
"appId": "com.electron.yt-dlandcut",
"files": [
"build/**/*",
"public/*",
"package.json"
],
"linux": {
"target": "appImage",
"category": "Utility",
"icon": "public/256x256.png"
},
"win": {
"target": "portable",
"icon": "public/256x256.ico"
},
"mac": {
"target": "dmg",
"icon": "public/256x256.icns"
},
"publish": "github"
}
}