This repository has been archived by the owner on Aug 5, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
124 lines (124 loc) · 3.3 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "ipfsvideouploader",
"productName": "OneLoveIPFS",
"version": "3.2.0",
"description": "Cross-platform IPFS uploader for 3Speak and DTube videos.",
"homepage": "https://uploader.oneloveipfs.com",
"repository": {
"type": "git",
"url": "https://github.com/oneloveipfs/ipfsVideoUploader"
},
"main": "src/electronApp.js",
"scripts": {
"start": "node src/index.js",
"v2migration": "node scripts/v2Migration.js",
"test": "mocha --timeout 5000",
"snyk-protect": "snyk-protect",
"prepare": "npm run snyk-protect",
"devapp": "electron src/electronApp.js",
"prepapp": "node scripts/electronPrep.js",
"build-installer": "electron-builder",
"build-hivecryptpro": "browserify -e src/hivecryptPro.js -p tinyify -o lib/hivecryptpro.min.js",
"install-olisc": "npm i https://github.com/oneloveipfs/olisc --save-optional",
"remove-olisc": "npm un olisc"
},
"build": {
"appId": "com.oneloveipfs.uploader",
"productName": "OneLoveIPFS",
"copyright": "Copyright (C) 2023 TechCoderX",
"files": [
"!docs/",
"!dist/",
"!OneLoveIPFS-*/",
"!test/",
"!handbrake/",
"!scripts/"
],
"asarUnpack": [
"node_modules/ffmpeg-static/bin/${os}/${arch}/ffmpeg",
"node_modules/ffmpeg-static/index.js",
"node_modules/ffmpeg-static/package.json"
],
"mac": {
"category": "public.app-category.utilities",
"target": [
{
"target": "dmg",
"arch": [
"arm64",
"x64"
]
}
],
"icon": "public/macos_icon.icns",
"minimumSystemVersion": "11"
},
"win": {
"icon": "public/win32_icon.ico",
"legalTrademarks": "OneLoveIPFS",
"target": "nsis"
},
"linux": {
"icon": "public/macos_icon.icns",
"target": [
"deb",
"AppImage"
],
"category": "Video"
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true,
"license": "LICENSE",
"perMachine": true,
"differentialPackage": false
},
"dmg": {
"writeUpdateInfo": false
}
},
"author": "techcoderx <[email protected]>",
"bugs": "https://github.com/oneloveipfs/ipfsVideoUploader/issues",
"license": "GPLv3",
"dependencies": {
"@snyk/protect": "^1.1292.1",
"about-window": "^1.15.2",
"async": "^3.2.5",
"axios": "^1.7.2",
"body-parser": "^1.20.2",
"cors": "^2.8.5",
"crypto-js": "^4.1.1",
"deepmerge": "^4.3.1",
"electron-squirrel-startup": "^1.0.1",
"express": "^4.19.2",
"ffmpeg-static": "^5.1.0",
"ffprobe-static": "^3.1.0",
"fluent-ffmpeg": "^2.1.3",
"form-data": "^3.0.0",
"hivesigner": "^3.3.4",
"http-proxy": "^1.18.1",
"ipfs-http-client": "^56.0.3",
"jsonwebtoken": "^9.0.2",
"multer": "^1.4.5-lts.1",
"node-schedule": "^2.1.1",
"node-webvtt": "^1.9.4",
"shelljs": "^0.8.5",
"socket.io": "^4.7.5",
"tus-js-client": "^3.1.3"
},
"devDependencies": {
"browserify": "^17.0.0",
"chai": "^4.3.7",
"electron": "^24.1.1",
"electron-builder": "^24.2.0",
"marked": "^4.3.0",
"mocha": "^10.2.0",
"tinyify": "^4.0.0"
},
"snyk": true,
"optionalDependencies": {
"bs58": "^5.0.0",
"hivecrypt": "^2.0.6",
"secp256k1": "^5.0.0"
}
}