-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.66 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.66 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
{
"name": "videosnatcher",
"version": "1.0.1-beta",
"description": "Download YouTube, Vimeo, and Other Videos with Ease",
"main": "index.js",
"scripts": {
"start": "electron .",
"build-dev": "electron-builder --mac --universal --publish never",
"build-deploy": "electron-builder --mac --universal --publish never && xcrun notarytool submit dist/VideoSnatcher-1.0.1-beta-universal.dmg --keychain-profile jemcats-dev-icloud-pass --wait"
},
"repository": {
"type": "git",
"url": "https://github.com/JEMcats-Software/VideoSnatcher.git"
},
"keywords": [
"yt",
"yt-saver"
],
"author": "JEMcats-Software",
"license": "ISC",
"bugs": {
"url": "https://github.com/JEMcats-Software/VideoSnatcher/issues"
},
"homepage": "https://github.com/JEMcats-Software/VideoSnatcher#readme",
"devDependencies": {
"electron": "^34.1.0",
"electron-builder": "^25.1.8",
"electron-packager": "^17.1.2"
},
"build": {
"files": [
"web/**/*",
"assets/**/*",
"index.js",
"package.json",
"package-lock.json"
],
"appId": "com.jemcats-software.videosnatcher",
"productName": "VideoSnatcher",
"directories": {
"output": "dist"
},
"mac": {
"icon": "assets/appicon.icns",
"identity": "88SX8P69PX",
"target": "dmg",
"hardenedRuntime": true,
"gatekeeperAssess": false
},
"linux": {
"icon": "assets/appicon.ico",
"target": [
"AppImage",
"deb",
"rpm"
]
}
},
"dependencies": {
"dialogs": "^2.0.1",
"express": "^4.21.2",
"ts-ebml": "^3.0.1",
"uuid": "^11.1.0",
"yt-dlp-wrap": "^2.3.12"
}
}