2016-10-30 10:57:12 +00:00
|
|
|
{
|
|
|
|
"name": "lossless-cut",
|
2019-11-04 03:32:03 +00:00
|
|
|
"productName": "LosslessCut",
|
2020-03-04 10:41:40 +00:00
|
|
|
"description": "The swiss army knife of lossless video/audio editing",
|
|
|
|
"copyright": "Copyright © 2020 ${author}",
|
2020-11-26 21:27:32 +00:00
|
|
|
"version": "3.27.0",
|
2020-03-04 10:41:40 +00:00
|
|
|
"main": "public/electron.js",
|
|
|
|
"homepage": "./",
|
2016-10-30 10:57:12 +00:00
|
|
|
"scripts": {
|
2020-03-04 10:41:40 +00:00
|
|
|
"start": "concurrently -k \"BROWSER=none PORT=3001 react-scripts start\" \"wait-on http://localhost:3001 && electron .\"",
|
2020-03-31 07:51:40 +00: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 15:17:51 +00: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 15:22:21 +00:00
|
|
|
"build": "yarn icon-gen && react-scripts build",
|
2020-03-04 10:41:40 +00:00
|
|
|
"test": "react-scripts test",
|
|
|
|
"eject": "react-scripts eject",
|
|
|
|
"lint": "eslint --ext .jsx --ext .js .",
|
2019-11-04 03:32:03 +00:00
|
|
|
"pack-mac": "electron-builder --mac",
|
2020-02-10 07:24:30 +00:00
|
|
|
"prepack-mac": "yarn build",
|
2019-11-04 03:32:03 +00:00
|
|
|
"pack-win": "electron-builder --win",
|
2020-02-10 07:24:30 +00:00
|
|
|
"prepack-win": "yarn build",
|
2020-04-01 03:49:02 +00:00
|
|
|
"postinstall": "patch-package && electron-builder install-app-deps",
|
2019-11-04 03:32:03 +00:00
|
|
|
"pack-linux": "electron-builder --linux",
|
2020-05-02 14:10:03 +00:00
|
|
|
"prepack-linux": "yarn build",
|
|
|
|
"scan-i18n": "i18next-scanner --config i18next-scanner.config.js"
|
2016-10-30 10:57:12 +00:00
|
|
|
},
|
|
|
|
"author": {
|
|
|
|
"name": "Mikael Finstad",
|
|
|
|
"email": "finstaden@gmail.com",
|
2020-04-05 10:32:21 +00:00
|
|
|
"url": "https://mifi.no/losslesscut/"
|
2016-10-30 10:57:12 +00:00
|
|
|
},
|
2017-02-11 13:47:17 +00:00
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "https://github.com/mifi/lossless-cut.git"
|
2017-02-11 13:46:06 +00:00
|
|
|
},
|
2016-10-30 10:57:12 +00:00
|
|
|
"license": "MIT",
|
|
|
|
"devDependencies": {
|
2020-03-04 11:05:05 +00:00
|
|
|
"axios": "^0.19.2",
|
|
|
|
"color": "^3.1.0",
|
2020-03-04 10:41:40 +00:00
|
|
|
"concurrently": "^5.1.0",
|
2020-03-04 11:05:05 +00:00
|
|
|
"csv-parse": "^4.8.5",
|
|
|
|
"csv-stringify": "^5.3.6",
|
2020-11-19 21:52:19 +00:00
|
|
|
"electron": "^8.5.2",
|
2020-11-19 22:44:01 +00:00
|
|
|
"electron-builder": "^22.9.1",
|
2020-02-10 07:24:30 +00:00
|
|
|
"electron-builder-notarize": "^1.1.2",
|
2020-02-24 10:18:44 +00:00
|
|
|
"electron-devtools-installer": "^2.2.4",
|
2020-02-14 04:06:15 +00: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 04:33:38 +00:00
|
|
|
"evergreen-ui": "^4.23.0",
|
2020-11-19 21:51:17 +00:00
|
|
|
"fast-xml-parser": "^3.17.4",
|
2020-03-04 10:41:40 +00:00
|
|
|
"file-url": "^3.0.0",
|
2020-02-16 04:33:38 +00:00
|
|
|
"framer-motion": "^1.8.4",
|
2019-01-28 01:25:31 +00:00
|
|
|
"hammerjs": "^2.0.8",
|
2020-03-19 15:37:38 +00:00
|
|
|
"i18next": "^19.3.2",
|
2020-11-25 21:26:11 +00:00
|
|
|
"i18next-scanner": "^3.0.0",
|
2020-03-31 05:11:55 +00:00
|
|
|
"icon-gen": "^2.0.0",
|
2020-07-17 00:52:25 +00:00
|
|
|
"lodash": "^4.17.19",
|
2020-03-31 07:51:40 +00:00
|
|
|
"mkdirp": "^1.0.3",
|
2017-08-14 15:18:15 +00:00
|
|
|
"moment": "^2.18.1",
|
2020-02-15 13:04:44 +00:00
|
|
|
"p-map": "^3.0.0",
|
2020-04-01 03:49:02 +00:00
|
|
|
"patch-package": "^6.2.1",
|
2020-11-19 21:51:17 +00:00
|
|
|
"pify": "^5.0.0",
|
2020-02-21 09:37:36 +00:00
|
|
|
"pretty-ms": "^6.0.0",
|
2020-02-14 04:06:15 +00:00
|
|
|
"react": "^16.12.0",
|
|
|
|
"react-dom": "^16.12.0",
|
2019-01-28 01:25:31 +00:00
|
|
|
"react-hammerjs": "^1.0.1",
|
2020-03-19 15:37:38 +00:00
|
|
|
"react-i18next": "^11.3.3",
|
2020-11-21 14:05:45 +00:00
|
|
|
"react-icons": "^3.11.0",
|
2020-02-18 14:17:14 +00:00
|
|
|
"react-lottie": "^1.2.3",
|
2020-03-04 11:05:05 +00:00
|
|
|
"react-scripts": "^3.4.0",
|
2019-01-28 01:25:31 +00:00
|
|
|
"react-sortable-hoc": "^1.5.3",
|
2020-02-20 10:41:01 +00:00
|
|
|
"react-use": "^13.26.1",
|
2020-11-27 21:43:06 +00:00
|
|
|
"smpte-timecode": "^1.2.3",
|
2019-02-10 14:39:53 +00:00
|
|
|
"strong-data-uri": "^1.0.5",
|
2020-03-04 11:05:05 +00:00
|
|
|
"svg2png": "^4.1.1",
|
2020-04-10 13:31:02 +00:00
|
|
|
"sweetalert2": "^9.10.10",
|
2019-01-28 01:25:31 +00:00
|
|
|
"sweetalert2-react-content": "^1.0.1",
|
2020-11-21 14:04:12 +00:00
|
|
|
"use-debounce": "^5.1.0",
|
2020-03-04 11:05:05 +00:00
|
|
|
"use-trace-update": "^1.3.0",
|
2019-01-28 17:09:54 +00:00
|
|
|
"uuid": "^3.3.2",
|
2020-03-04 11:05:05 +00:00
|
|
|
"wait-on": "^4.0.1"
|
|
|
|
},
|
|
|
|
"dependencies": {
|
2020-11-19 21:51:17 +00:00
|
|
|
"cue-parser": "^0.3.0",
|
2020-03-04 11:05:05 +00:00
|
|
|
"electron-is-dev": "^0.1.2",
|
2020-04-05 14:16:54 +00:00
|
|
|
"electron-store": "^5.1.1",
|
2020-04-17 15:44:57 +00:00
|
|
|
"electron-unhandled": "^3.0.2",
|
2020-03-04 11:05:05 +00:00
|
|
|
"execa": "^4.0.0",
|
2020-05-06 06:06:29 +00:00
|
|
|
"ffmpeg-static": "^4.2.1",
|
2020-03-04 11:05:05 +00:00
|
|
|
"ffprobe-static": "^3.0.0",
|
|
|
|
"file-type": "^12.4.0",
|
|
|
|
"fs-extra": "^8.1.0",
|
|
|
|
"github-api": "^3.2.2",
|
2020-11-25 20:46:03 +00:00
|
|
|
"hotkeys-js": "^3.8.1",
|
2020-03-19 15:37:38 +00:00
|
|
|
"i18next-electron-language-detector": "^0.0.10",
|
2020-05-02 14:10:03 +00:00
|
|
|
"i18next-fs-backend": "^1.0.1",
|
2020-04-27 05:50:04 +00:00
|
|
|
"json5": "^2.1.3",
|
2020-03-04 11:05:05 +00:00
|
|
|
"mime-types": "^2.1.14",
|
2020-04-10 10:54:51 +00:00
|
|
|
"open": "^7.0.3",
|
2020-08-15 23:01:12 +00:00
|
|
|
"react-syntax-highlighter": "^13.0.0",
|
2020-03-04 11:05:05 +00:00
|
|
|
"read-chunk": "^2.0.0",
|
2020-03-26 11:04:36 +00:00
|
|
|
"semver": "^7.1.3",
|
2020-03-04 11:05:05 +00:00
|
|
|
"string-to-stream": "^1.1.1",
|
2020-04-26 15:22:44 +00:00
|
|
|
"strtok3": "^6.0.0",
|
2020-03-04 11:05:05 +00:00
|
|
|
"trash": "^6.1.1"
|
2019-11-04 03:32:03 +00:00
|
|
|
},
|
2020-03-04 10:41:40 +00:00
|
|
|
"eslintConfig": {
|
|
|
|
"extends": "react-app"
|
|
|
|
},
|
2019-11-04 03:32:03 +00:00
|
|
|
"browserslist": {
|
|
|
|
"production": [
|
2020-02-16 04:33:38 +00:00
|
|
|
"electron 8.0"
|
2019-11-04 03:32:03 +00:00
|
|
|
],
|
|
|
|
"development": [
|
2020-02-16 04:33:38 +00:00
|
|
|
"electron 8.0"
|
2019-11-04 03:32:03 +00:00
|
|
|
]
|
|
|
|
},
|
|
|
|
"build": {
|
2020-03-31 07:37:23 +00:00
|
|
|
"directories": {
|
|
|
|
"buildResources": "build-resources"
|
|
|
|
},
|
2019-11-04 03:32:03 +00:00
|
|
|
"files": [
|
|
|
|
"build/**/*",
|
2020-02-25 07:01:08 +00:00
|
|
|
"!node_modules/ffmpeg-static/ffmpeg",
|
2019-11-04 03:32:03 +00:00
|
|
|
"!node_modules/ffprobe-static/bin/**/*"
|
|
|
|
],
|
|
|
|
"asar": {
|
|
|
|
"smartUnpack": false
|
|
|
|
},
|
2020-02-10 07:24:30 +00:00
|
|
|
"appId": "no.mifi.losslesscut",
|
|
|
|
"artifactName": "${productName}-${os}.${ext}",
|
|
|
|
"afterSign": "electron-builder-notarize",
|
2019-11-04 03:32:03 +00:00
|
|
|
"mac": {
|
2020-02-10 07:24:30 +00:00
|
|
|
"hardenedRuntime": true,
|
2020-03-31 05:11:55 +00:00
|
|
|
"appId": "no.mifi.losslesscut-mac",
|
|
|
|
"category": "public.app-category.productivity",
|
|
|
|
"target": [
|
|
|
|
"mas",
|
|
|
|
"dmg"
|
|
|
|
],
|
2020-04-11 05:53:31 +00:00
|
|
|
"asarUnpack": [
|
|
|
|
"node_modules/trash/**"
|
|
|
|
],
|
2020-05-04 09:46:35 +00:00
|
|
|
"electronLanguages": [
|
|
|
|
"en"
|
|
|
|
],
|
2019-11-04 03:32:03 +00:00
|
|
|
"extraResources": [
|
2020-03-31 18:17:44 +00:00
|
|
|
{
|
|
|
|
"from": "ffmpeg-mac/ffmpeg",
|
2020-04-01 03:10:43 +00:00
|
|
|
"to": "ffmpeg"
|
2020-03-31 18:17:44 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"from": "ffmpeg-mac/ffprobe",
|
2020-04-01 03:10:43 +00:00
|
|
|
"to": "ffprobe"
|
2020-03-31 18:17:44 +00:00
|
|
|
}
|
2019-11-04 03:32:03 +00:00
|
|
|
],
|
2020-05-17 13:54:56 +00:00
|
|
|
"icon": "icns-build/app.icns",
|
|
|
|
"fileAssociations": [
|
|
|
|
{
|
|
|
|
"ext": [
|
|
|
|
"webm",
|
|
|
|
"mkv",
|
|
|
|
"flv",
|
|
|
|
"vob",
|
|
|
|
"ogv",
|
|
|
|
"drc",
|
|
|
|
"gif",
|
|
|
|
"gifv",
|
|
|
|
"mng",
|
|
|
|
"avi",
|
|
|
|
"mts",
|
|
|
|
"m2ts",
|
|
|
|
"ts",
|
|
|
|
"mov",
|
|
|
|
"qt",
|
|
|
|
"wmv",
|
|
|
|
"yuv",
|
|
|
|
"rm",
|
|
|
|
"rmvb",
|
|
|
|
"asf",
|
|
|
|
"amv",
|
|
|
|
"mp4",
|
|
|
|
"m4v",
|
|
|
|
"mpg",
|
|
|
|
"mp2",
|
|
|
|
"mpeg",
|
|
|
|
"mpe",
|
|
|
|
"mpv",
|
|
|
|
"m2v",
|
|
|
|
"svi",
|
|
|
|
"3gp",
|
|
|
|
"3g2",
|
|
|
|
"mxf",
|
|
|
|
"roq",
|
|
|
|
"nsv",
|
|
|
|
"f4v",
|
|
|
|
"f4p",
|
|
|
|
"f4a",
|
|
|
|
"f4b"
|
|
|
|
],
|
|
|
|
"name": "Video",
|
|
|
|
"description": "Video files",
|
|
|
|
"role": "Viewer"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"ext": [
|
|
|
|
"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",
|
|
|
|
"rf64",
|
|
|
|
"sln",
|
|
|
|
"tta",
|
|
|
|
"voc",
|
|
|
|
"vox",
|
|
|
|
"wav",
|
|
|
|
"wma",
|
|
|
|
"wv",
|
|
|
|
"8svx",
|
|
|
|
"cda"
|
|
|
|
],
|
|
|
|
"name": "Audio",
|
|
|
|
"description": "Audio files",
|
|
|
|
"role": "Viewer"
|
|
|
|
}
|
|
|
|
]
|
2020-03-31 05:11:55 +00: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 03:10:43 +00:00
|
|
|
"dist/mas/LosslessCut.app/Contents/Resources/ffmpeg",
|
2020-04-11 05:53:31 +00:00
|
|
|
"dist/mas/LosslessCut.app/Contents/Resources/ffprobe",
|
|
|
|
"dist/mas/LosslessCut.app/Contents/Resources/app.asar.unpacked/node_modules/trash/lib/macos-trash"
|
2020-03-31 05:11:55 +00:00
|
|
|
]
|
2019-11-04 03:32:03 +00:00
|
|
|
},
|
|
|
|
"win": {
|
2020-02-11 14:45:04 +00:00
|
|
|
"target": [
|
2020-03-31 05:11:55 +00:00
|
|
|
"portable",
|
|
|
|
"zip",
|
2020-03-29 14:56:01 +00:00
|
|
|
"appx"
|
2020-02-11 14:45:04 +00:00
|
|
|
],
|
2019-11-04 03:32:03 +00:00
|
|
|
"extraResources": [
|
2020-02-25 07:01:08 +00:00
|
|
|
"node_modules/ffmpeg-static/ffmpeg.exe",
|
2020-03-06 15:44:19 +00:00
|
|
|
"node_modules/ffprobe-static/bin/win32/x64/**"
|
2019-11-04 03:32:03 +00:00
|
|
|
],
|
2020-05-17 13:54:56 +00:00
|
|
|
"icon": "icon-build/app-512.png",
|
|
|
|
"fileAssociations": [
|
|
|
|
{
|
|
|
|
"ext": [
|
|
|
|
"webm",
|
|
|
|
"mkv",
|
|
|
|
"flv",
|
|
|
|
"vob",
|
|
|
|
"ogv",
|
|
|
|
"drc",
|
|
|
|
"gif",
|
|
|
|
"gifv",
|
|
|
|
"mng",
|
|
|
|
"avi",
|
|
|
|
"mts",
|
|
|
|
"m2ts",
|
|
|
|
"ts",
|
|
|
|
"mov",
|
|
|
|
"qt",
|
|
|
|
"wmv",
|
|
|
|
"yuv",
|
|
|
|
"rm",
|
|
|
|
"rmvb",
|
|
|
|
"asf",
|
|
|
|
"amv",
|
|
|
|
"mp4",
|
|
|
|
"m4v",
|
|
|
|
"mpg",
|
|
|
|
"mp2",
|
|
|
|
"mpeg",
|
|
|
|
"mpe",
|
|
|
|
"mpv",
|
|
|
|
"m2v",
|
|
|
|
"svi",
|
|
|
|
"3gp",
|
|
|
|
"3g2",
|
|
|
|
"mxf",
|
|
|
|
"roq",
|
|
|
|
"nsv",
|
|
|
|
"f4v",
|
|
|
|
"f4p",
|
|
|
|
"f4a",
|
|
|
|
"f4b"
|
|
|
|
],
|
|
|
|
"name": "Video",
|
|
|
|
"description": "Video files",
|
|
|
|
"role": "Viewer"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"ext": [
|
|
|
|
"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",
|
|
|
|
"rf64",
|
|
|
|
"sln",
|
|
|
|
"tta",
|
|
|
|
"voc",
|
|
|
|
"vox",
|
|
|
|
"wav",
|
|
|
|
"wma",
|
|
|
|
"wv",
|
|
|
|
"8svx",
|
|
|
|
"cda"
|
|
|
|
],
|
|
|
|
"name": "Audio",
|
|
|
|
"description": "Audio files",
|
|
|
|
"role": "Viewer"
|
|
|
|
}
|
|
|
|
]
|
2019-11-04 03:32:03 +00:00
|
|
|
},
|
2020-03-29 15:23:19 +00:00
|
|
|
"appx": {
|
|
|
|
"applicationId": "LosslessCut",
|
2020-03-29 16:19:39 +00:00
|
|
|
"identityName": "57275mifi.no.LosslessCut",
|
|
|
|
"publisher": "CN=2C479316-22A8-4D63-BC38-F0FB9AB0B974",
|
2020-03-29 15:39:18 +00:00
|
|
|
"publisherDisplayName": "mifi.no"
|
2020-03-29 15:23:19 +00:00
|
|
|
},
|
2019-11-04 03:32:03 +00:00
|
|
|
"linux": {
|
2020-03-29 11:02:18 +00:00
|
|
|
"executableName": "losslesscut",
|
2019-11-04 03:32:03 +00:00
|
|
|
"extraResources": [
|
2020-02-25 10:36:37 +00:00
|
|
|
"node_modules/ffmpeg-static/ffmpeg",
|
2019-11-04 03:32:03 +00:00
|
|
|
"node_modules/ffprobe-static/bin/linux/x64/**"
|
|
|
|
],
|
2019-11-04 09:18:22 +00:00
|
|
|
"icon": "icon-build/app-512.png",
|
2019-11-05 10:29:54 +00:00
|
|
|
"target": [
|
|
|
|
"tar.bz2",
|
2020-05-17 13:54:56 +00:00
|
|
|
"AppImage",
|
|
|
|
"snap"
|
2020-02-10 07:40:38 +00:00
|
|
|
]
|
2020-11-27 22:31:19 +00:00
|
|
|
},
|
|
|
|
"snap": {
|
|
|
|
"plugs": ["desktop", "desktop-legacy", "home", "x11", "unity7", "browser-support", "network", "gsettings", "pulseaudio", "opengl", "removable-media"]
|
2020-05-17 13:54:56 +00:00
|
|
|
}
|
2016-10-30 10:57:12 +00:00
|
|
|
}
|
|
|
|
}
|