2016-10-30 11:57:12 +01:00
|
|
|
{
|
|
|
|
"name": "lossless-cut",
|
2019-11-04 04:32:03 +01:00
|
|
|
"productName": "LosslessCut",
|
2020-03-04 11:41:40 +01:00
|
|
|
"description": "The swiss army knife of lossless video/audio editing",
|
|
|
|
"copyright": "Copyright © 2020 ${author}",
|
2020-04-05 12:34:16 +02:00
|
|
|
"version": "3.17.30",
|
2020-03-04 11:41:40 +01:00
|
|
|
"main": "public/electron.js",
|
|
|
|
"homepage": "./",
|
2016-10-30 11:57:12 +01:00
|
|
|
"scripts": {
|
2020-03-04 11:41:40 +01:00
|
|
|
"start": "concurrently -k \"BROWSER=none PORT=3001 react-scripts start\" \"wait-on http://localhost:3001 && electron .\"",
|
2020-03-31 09:51:40 +02:00
|
|
|
"icon-gen": "mkdirp icon-build && svg2png src/icon.svg -o ./icon-build/app-512.png -w 512 -h 512 && mkdirp icns-build && icon-gen -i src/icon.svg -o ./icns-build --icns --icns-sizes 512,1024 && mkdirp build-resources/appx && npx svg2png src/icon.svg --output=build-resources/appx/StoreLogo.png --width=50 --height=50 && npx svg2png src/icon.svg --output=build-resources/appx/Square150x150Logo.png --width=300 --height=300 && npx svg2png src/icon.svg --output=build-resources/appx/Square44x44Logo.png --width=44 --height=44 && npx svg2png src/icon.svg --output=build-resources/appx/Wide310x150Logo.png --width=620 --height=300",
|
2020-04-01 17:17:51 +02:00
|
|
|
"download-ffmpeg": "mkdir -p ffmpeg-mac && wget https://github.com/mifi/ffmpeg-build-script/releases/download/n4.2.2/ffmpeg -O ffmpeg-mac/ffmpeg && wget https://github.com/mifi/ffmpeg-build-script/releases/download/n4.2.2/ffprobe -O ffmpeg-mac/ffprobe && chmod +x ffmpeg-mac/ffmpeg && chmod +x ffmpeg-mac/ffprobe",
|
2020-03-04 16:22:21 +01:00
|
|
|
"build": "yarn icon-gen && react-scripts build",
|
2020-03-04 11:41:40 +01:00
|
|
|
"test": "react-scripts test",
|
|
|
|
"eject": "react-scripts eject",
|
|
|
|
"lint": "eslint --ext .jsx --ext .js .",
|
2019-11-04 04:32:03 +01:00
|
|
|
"pack-mac": "electron-builder --mac",
|
2020-02-10 08:24:30 +01:00
|
|
|
"prepack-mac": "yarn build",
|
2019-11-04 04:32:03 +01:00
|
|
|
"pack-win": "electron-builder --win",
|
2020-02-10 08:24:30 +01:00
|
|
|
"prepack-win": "yarn build",
|
2020-04-01 05:49:02 +02:00
|
|
|
"postinstall": "patch-package && electron-builder install-app-deps",
|
2019-11-04 04:32:03 +01:00
|
|
|
"pack-linux": "electron-builder --linux",
|
2020-03-04 11:41:40 +01:00
|
|
|
"prepack-linux": "yarn build"
|
2016-10-30 11:57:12 +01:00
|
|
|
},
|
|
|
|
"author": {
|
|
|
|
"name": "Mikael Finstad",
|
|
|
|
"email": "finstaden@gmail.com",
|
2020-04-05 12:32:21 +02:00
|
|
|
"url": "https://mifi.no/losslesscut/"
|
2016-10-30 11:57:12 +01:00
|
|
|
},
|
2017-02-11 14:47:17 +01:00
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "https://github.com/mifi/lossless-cut.git"
|
2017-02-11 14:46:06 +01:00
|
|
|
},
|
2016-10-30 11:57:12 +01:00
|
|
|
"license": "MIT",
|
|
|
|
"devDependencies": {
|
2020-03-04 12:05:05 +01:00
|
|
|
"axios": "^0.19.2",
|
|
|
|
"color": "^3.1.0",
|
2020-03-04 11:41:40 +01:00
|
|
|
"concurrently": "^5.1.0",
|
2020-03-04 12:05:05 +01:00
|
|
|
"csv-parse": "^4.8.5",
|
|
|
|
"csv-stringify": "^5.3.6",
|
2020-02-14 07:22:28 +01:00
|
|
|
"electron": "^8.0.0",
|
2020-02-10 08:24:30 +01:00
|
|
|
"electron-builder": "^22.3.2",
|
|
|
|
"electron-builder-notarize": "^1.1.2",
|
2020-02-24 11:18:44 +01:00
|
|
|
"electron-devtools-installer": "^2.2.4",
|
2020-02-14 05:06:15 +01:00
|
|
|
"eslint": "^5.16.0 || ^6.1.0",
|
|
|
|
"eslint-config-airbnb": "^18.0.1",
|
|
|
|
"eslint-plugin-import": "^2.18.2",
|
|
|
|
"eslint-plugin-jsx-a11y": "^6.2.3",
|
|
|
|
"eslint-plugin-react": "^7.14.3",
|
|
|
|
"eslint-plugin-react-hooks": "^1.7.0",
|
2020-02-16 05:33:38 +01:00
|
|
|
"evergreen-ui": "^4.23.0",
|
2020-03-04 11:41:40 +01:00
|
|
|
"file-url": "^3.0.0",
|
2020-02-16 05:33:38 +01:00
|
|
|
"framer-motion": "^1.8.4",
|
2019-01-28 02:25:31 +01:00
|
|
|
"hammerjs": "^2.0.8",
|
2020-03-19 16:37:38 +01:00
|
|
|
"i18next": "^19.3.2",
|
2020-03-31 07:11:55 +02:00
|
|
|
"icon-gen": "^2.0.0",
|
2019-08-12 18:22:45 +02:00
|
|
|
"lodash": "^4.17.13",
|
2020-03-31 09:51:40 +02:00
|
|
|
"mkdirp": "^1.0.3",
|
2017-08-14 17:18:15 +02:00
|
|
|
"moment": "^2.18.1",
|
2018-05-17 22:14:26 +02:00
|
|
|
"mousetrap": "^1.6.1",
|
2020-02-15 14:04:44 +01:00
|
|
|
"p-map": "^3.0.0",
|
2019-11-03 17:19:36 +01:00
|
|
|
"p-queue": "^6.2.0",
|
2020-04-01 05:49:02 +02:00
|
|
|
"patch-package": "^6.2.1",
|
2020-02-21 10:37:36 +01:00
|
|
|
"pretty-ms": "^6.0.0",
|
2020-02-14 05:06:15 +01:00
|
|
|
"react": "^16.12.0",
|
|
|
|
"react-dom": "^16.12.0",
|
2019-01-28 02:25:31 +01:00
|
|
|
"react-hammerjs": "^1.0.1",
|
2020-03-19 16:37:38 +01:00
|
|
|
"react-i18next": "^11.3.3",
|
2020-02-15 07:53:32 +01:00
|
|
|
"react-icons": "^3.9.0",
|
2020-02-18 15:17:14 +01:00
|
|
|
"react-lottie": "^1.2.3",
|
2020-03-04 12:05:05 +01:00
|
|
|
"react-scripts": "^3.4.0",
|
2019-01-28 02:25:31 +01:00
|
|
|
"react-sortable-hoc": "^1.5.3",
|
2020-02-20 11:41:01 +01:00
|
|
|
"react-use": "^13.26.1",
|
2019-02-10 15:39:53 +01:00
|
|
|
"strong-data-uri": "^1.0.5",
|
2020-03-04 12:05:05 +01:00
|
|
|
"svg2png": "^4.1.1",
|
2020-02-18 15:17:14 +01:00
|
|
|
"sweetalert2": "^9.7.2",
|
2019-01-28 02:25:31 +01:00
|
|
|
"sweetalert2-react-content": "^1.0.1",
|
2020-03-04 12:05:05 +01:00
|
|
|
"use-trace-update": "^1.3.0",
|
2019-01-28 18:09:54 +01:00
|
|
|
"uuid": "^3.3.2",
|
2020-03-04 12:05:05 +01:00
|
|
|
"wait-on": "^4.0.1"
|
|
|
|
},
|
|
|
|
"dependencies": {
|
|
|
|
"electron-is-dev": "^0.1.2",
|
|
|
|
"electron-store": "^5.1.0",
|
|
|
|
"execa": "^4.0.0",
|
|
|
|
"ffmpeg-static": "^4.0.1",
|
|
|
|
"ffprobe-static": "^3.0.0",
|
|
|
|
"file-type": "^12.4.0",
|
|
|
|
"fs-extra": "^8.1.0",
|
|
|
|
"github-api": "^3.2.2",
|
2020-03-19 16:37:38 +01:00
|
|
|
"i18next-electron-language-detector": "^0.0.10",
|
|
|
|
"i18next-node-fs-backend": "^2.1.3",
|
2020-03-04 12:05:05 +01:00
|
|
|
"mime-types": "^2.1.14",
|
|
|
|
"read-chunk": "^2.0.0",
|
2020-03-26 12:04:36 +01:00
|
|
|
"semver": "^7.1.3",
|
2020-03-04 12:05:05 +01:00
|
|
|
"string-to-stream": "^1.1.1",
|
|
|
|
"trash": "^6.1.1"
|
2019-11-04 04:32:03 +01:00
|
|
|
},
|
2020-03-04 11:41:40 +01:00
|
|
|
"eslintConfig": {
|
|
|
|
"extends": "react-app"
|
|
|
|
},
|
2019-11-04 04:32:03 +01:00
|
|
|
"browserslist": {
|
|
|
|
"production": [
|
2020-02-16 05:33:38 +01:00
|
|
|
"electron 8.0"
|
2019-11-04 04:32:03 +01:00
|
|
|
],
|
|
|
|
"development": [
|
2020-02-16 05:33:38 +01:00
|
|
|
"electron 8.0"
|
2019-11-04 04:32:03 +01:00
|
|
|
]
|
|
|
|
},
|
|
|
|
"build": {
|
2020-03-31 09:37:23 +02:00
|
|
|
"directories": {
|
|
|
|
"buildResources": "build-resources"
|
|
|
|
},
|
2019-11-04 04:32:03 +01:00
|
|
|
"files": [
|
|
|
|
"build/**/*",
|
2020-02-25 08:01:08 +01:00
|
|
|
"!node_modules/ffmpeg-static/ffmpeg",
|
2019-11-04 04:32:03 +01:00
|
|
|
"!node_modules/ffprobe-static/bin/**/*"
|
|
|
|
],
|
|
|
|
"asar": {
|
|
|
|
"smartUnpack": false
|
|
|
|
},
|
2020-02-10 08:24:30 +01:00
|
|
|
"appId": "no.mifi.losslesscut",
|
|
|
|
"artifactName": "${productName}-${os}.${ext}",
|
|
|
|
"afterSign": "electron-builder-notarize",
|
2019-11-04 04:32:03 +01:00
|
|
|
"mac": {
|
2020-02-10 08:24:30 +01:00
|
|
|
"hardenedRuntime": true,
|
2020-03-31 07:11:55 +02:00
|
|
|
"appId": "no.mifi.losslesscut-mac",
|
|
|
|
"category": "public.app-category.productivity",
|
|
|
|
"target": [
|
|
|
|
"mas",
|
|
|
|
"dmg"
|
|
|
|
],
|
2019-11-04 04:32:03 +01:00
|
|
|
"extraResources": [
|
2020-03-31 20:17:44 +02:00
|
|
|
{
|
|
|
|
"from": "ffmpeg-mac/ffmpeg",
|
2020-04-01 05:10:43 +02:00
|
|
|
"to": "ffmpeg"
|
2020-03-31 20:17:44 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"from": "ffmpeg-mac/ffprobe",
|
2020-04-01 05:10:43 +02:00
|
|
|
"to": "ffprobe"
|
2020-03-31 20:17:44 +02:00
|
|
|
}
|
2019-11-04 04:32:03 +01:00
|
|
|
],
|
2020-04-01 12:17:38 +02:00
|
|
|
"icon": "icns-build/app.icns",
|
|
|
|
"fileAssociations": [
|
|
|
|
{
|
|
|
|
"ext": [
|
|
|
|
"webm",
|
|
|
|
"mkv",
|
|
|
|
"flv",
|
|
|
|
"vob",
|
|
|
|
"ogv",
|
|
|
|
"ogg",
|
|
|
|
"drc",
|
|
|
|
"gif",
|
|
|
|
"gifv",
|
|
|
|
"mng",
|
|
|
|
"avi",
|
|
|
|
"mts",
|
|
|
|
"m2ts",
|
|
|
|
"ts",
|
|
|
|
"mov",
|
|
|
|
"qt",
|
|
|
|
"wmv",
|
|
|
|
"yuv",
|
|
|
|
"rm",
|
|
|
|
"rmvb",
|
|
|
|
"asf",
|
|
|
|
"amv",
|
|
|
|
"mp4",
|
|
|
|
"m4p",
|
|
|
|
"m4v",
|
|
|
|
"mpg",
|
|
|
|
"mp2",
|
|
|
|
"mpeg",
|
|
|
|
"mpe",
|
|
|
|
"mpv",
|
|
|
|
"m2v",
|
|
|
|
"svi",
|
|
|
|
"3gp",
|
|
|
|
"3g2",
|
|
|
|
"mxf",
|
|
|
|
"roq",
|
|
|
|
"nsv",
|
|
|
|
"f4v",
|
|
|
|
"f4p",
|
|
|
|
"f4a",
|
|
|
|
"f4b"
|
|
|
|
],
|
2020-04-03 12:39:03 +02:00
|
|
|
"name": "Video",
|
2020-04-01 12:17:38 +02:00
|
|
|
"description": "Video files",
|
|
|
|
"role": "Viewer"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"ext": [
|
|
|
|
"3gp",
|
|
|
|
"aa",
|
|
|
|
"aac",
|
|
|
|
"aax",
|
|
|
|
"act",
|
|
|
|
"aiff",
|
|
|
|
"alac",
|
|
|
|
"amr",
|
|
|
|
"ape",
|
|
|
|
"au",
|
|
|
|
"awb",
|
|
|
|
"dct",
|
|
|
|
"dss",
|
|
|
|
"dvf",
|
|
|
|
"flac",
|
|
|
|
"gsm",
|
|
|
|
"iklax",
|
|
|
|
"ivs",
|
|
|
|
"m4a",
|
|
|
|
"m4b",
|
|
|
|
"m4p",
|
|
|
|
"mmf",
|
|
|
|
"mp3",
|
|
|
|
"mpc",
|
|
|
|
"msv",
|
|
|
|
"nmf",
|
|
|
|
"nsf",
|
|
|
|
"ogg",
|
|
|
|
"oga",
|
|
|
|
"mogg",
|
|
|
|
"opus",
|
|
|
|
"ra",
|
|
|
|
"rm",
|
|
|
|
"raw",
|
|
|
|
"rf64",
|
|
|
|
"sln",
|
|
|
|
"tta",
|
|
|
|
"voc",
|
|
|
|
"vox",
|
|
|
|
"wav",
|
|
|
|
"wma",
|
|
|
|
"wv",
|
|
|
|
"webm",
|
|
|
|
"8svx",
|
|
|
|
"cda"
|
|
|
|
],
|
2020-04-03 12:39:03 +02:00
|
|
|
"name": "Audio",
|
2020-04-01 12:17:38 +02:00
|
|
|
"description": "Audio files",
|
|
|
|
"role": "Viewer"
|
|
|
|
}
|
|
|
|
]
|
2020-03-31 07:11:55 +02:00
|
|
|
},
|
|
|
|
"mas": {
|
|
|
|
"hardenedRuntime": false,
|
|
|
|
"entitlements": "entitlements.mas.plist",
|
|
|
|
"entitlementsInherit": "entitlements.mas.inherit.plist",
|
|
|
|
"provisioningProfile": "LosslessCut_Mac_App_Store_provisioning_profile.provisionprofile",
|
|
|
|
"binaries": [
|
2020-04-01 05:10:43 +02:00
|
|
|
"dist/mas/LosslessCut.app/Contents/Resources/ffmpeg",
|
|
|
|
"dist/mas/LosslessCut.app/Contents/Resources/ffprobe"
|
2020-03-31 07:11:55 +02:00
|
|
|
]
|
2019-11-04 04:32:03 +01:00
|
|
|
},
|
|
|
|
"win": {
|
2020-02-11 15:45:04 +01:00
|
|
|
"target": [
|
2020-03-31 07:11:55 +02:00
|
|
|
"portable",
|
|
|
|
"zip",
|
2020-03-29 16:56:01 +02:00
|
|
|
"appx"
|
2020-02-11 15:45:04 +01:00
|
|
|
],
|
2019-11-04 04:32:03 +01:00
|
|
|
"extraResources": [
|
2020-02-25 08:01:08 +01:00
|
|
|
"node_modules/ffmpeg-static/ffmpeg.exe",
|
2020-03-06 16:44:19 +01:00
|
|
|
"node_modules/ffprobe-static/bin/win32/x64/**"
|
2019-11-04 04:32:03 +01:00
|
|
|
],
|
|
|
|
"icon": "icon-build/app-512.png"
|
|
|
|
},
|
2020-03-29 17:23:19 +02:00
|
|
|
"appx": {
|
|
|
|
"applicationId": "LosslessCut",
|
2020-03-29 18:19:39 +02:00
|
|
|
"identityName": "57275mifi.no.LosslessCut",
|
|
|
|
"publisher": "CN=2C479316-22A8-4D63-BC38-F0FB9AB0B974",
|
2020-03-29 17:39:18 +02:00
|
|
|
"publisherDisplayName": "mifi.no"
|
2020-03-29 17:23:19 +02:00
|
|
|
},
|
2019-11-04 04:32:03 +01:00
|
|
|
"linux": {
|
2020-03-29 13:02:18 +02:00
|
|
|
"executableName": "losslesscut",
|
2019-11-04 04:32:03 +01:00
|
|
|
"extraResources": [
|
2020-02-25 11:36:37 +01:00
|
|
|
"node_modules/ffmpeg-static/ffmpeg",
|
2019-11-04 04:32:03 +01:00
|
|
|
"node_modules/ffprobe-static/bin/linux/x64/**"
|
|
|
|
],
|
2019-11-04 10:18:22 +01:00
|
|
|
"icon": "icon-build/app-512.png",
|
2019-11-05 11:29:54 +01:00
|
|
|
"target": [
|
|
|
|
"tar.bz2",
|
2020-02-10 08:40:38 +01:00
|
|
|
"AppImage",
|
|
|
|
"snap"
|
|
|
|
]
|
2019-11-04 04:32:03 +01:00
|
|
|
}
|
2016-10-30 11:57:12 +01:00
|
|
|
}
|
|
|
|
}
|