2016-10-30 11:57:12 +01:00
|
|
|
{
|
|
|
|
"name": "lossless-cut",
|
2019-11-04 04:32:03 +01:00
|
|
|
"productName": "LosslessCut",
|
|
|
|
"description": "Lossless video editor",
|
|
|
|
"copyright": "Copyright © 2019 ${author}",
|
2019-11-04 19:11:19 +01:00
|
|
|
"version": "2.6.1",
|
2019-11-04 04:32:03 +01:00
|
|
|
"main": "build/index.js",
|
2016-10-30 11:57:12 +01:00
|
|
|
"scripts": {
|
2019-11-04 04:32:03 +01:00
|
|
|
"start": "electron watch-build",
|
|
|
|
"watch": "babel src -d watch-build --copy-files -w",
|
2019-11-04 04:39:57 +01:00
|
|
|
"icon-gen": "mkdir -p icon-build && svg2png src/icon.svg -o ./icon-build/app-512.png -w 512 -h 512",
|
2019-11-04 04:32:03 +01:00
|
|
|
"build-js": "rm -rf build && babel src -d build --copy-files",
|
|
|
|
"postinstall": "electron-builder install-app-deps",
|
|
|
|
"pack-mac": "electron-builder --mac",
|
|
|
|
"prepack-mac": "yarn build-js",
|
|
|
|
"pack-win": "electron-builder --win",
|
|
|
|
"prepack-win": "yarn build-js",
|
|
|
|
"pack-linux": "electron-builder --linux",
|
|
|
|
"prepack-linux": "yarn build-js",
|
|
|
|
"prerelease": "yarn build-js",
|
2019-11-04 04:46:00 +01:00
|
|
|
"release": "electron-builder",
|
2016-11-03 20:16:27 +01:00
|
|
|
"gifify": "gifify -p 405:299 -r 5@3 Untitled.mov-00.00.00.971-00.00.19.780.mp4",
|
2019-11-04 04:32:03 +01:00
|
|
|
"lint": "eslint --ext .jsx --ext .js ."
|
2016-10-30 11:57:12 +01:00
|
|
|
},
|
|
|
|
"author": {
|
|
|
|
"name": "Mikael Finstad",
|
|
|
|
"email": "finstaden@gmail.com",
|
|
|
|
"url": "mifi.no"
|
|
|
|
},
|
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": {
|
|
|
|
"babel-cli": "^6.18.0",
|
2018-09-30 22:08:36 +02:00
|
|
|
"babel-eslint": "^10.0.1",
|
2018-05-17 12:08:11 +02:00
|
|
|
"babel-plugin-transform-class-properties": "^6.24.1",
|
|
|
|
"babel-plugin-transform-object-rest-spread": "^6.26.0",
|
2018-02-17 17:42:59 +01:00
|
|
|
"babel-preset-env": "^1.6.1",
|
2016-11-03 20:16:27 +01:00
|
|
|
"babel-preset-react": "^6.16.0",
|
2019-11-04 04:32:03 +01:00
|
|
|
"electron": "^7.0.1",
|
|
|
|
"electron-builder": "21",
|
2018-09-30 22:08:36 +02:00
|
|
|
"eslint": "^5.6.1",
|
|
|
|
"eslint-config-airbnb": "^17.1.0",
|
|
|
|
"eslint-plugin-import": "^2.14.0",
|
|
|
|
"eslint-plugin-jsx-a11y": "^6.1.1",
|
|
|
|
"eslint-plugin-react": "^7.11.1",
|
2019-11-04 04:32:03 +01:00
|
|
|
"svg2png": "^4.1.1"
|
2016-10-30 11:57:12 +01:00
|
|
|
},
|
|
|
|
"dependencies": {
|
|
|
|
"bluebird": "^3.4.6",
|
|
|
|
"classnames": "^2.2.5",
|
2019-01-28 18:09:54 +01:00
|
|
|
"color": "^3.1.0",
|
2016-10-30 11:57:12 +01:00
|
|
|
"electron-default-menu": "^1.0.0",
|
2016-11-21 19:05:19 +01:00
|
|
|
"electron-is-dev": "^0.1.2",
|
2016-10-30 11:57:12 +01:00
|
|
|
"execa": "^0.5.0",
|
2019-11-04 04:32:03 +01:00
|
|
|
"ffmpeg-static": "^2.7.0",
|
|
|
|
"ffprobe-static": "^3.0.0",
|
2019-11-04 19:08:33 +01:00
|
|
|
"file-type": "^12.4.0",
|
2019-06-23 00:59:53 +02:00
|
|
|
"github-api": "^3.2.2",
|
2019-01-28 02:25:31 +01:00
|
|
|
"hammerjs": "^2.0.8",
|
2019-04-14 00:59:52 +02:00
|
|
|
"jquery": "^3.4.0",
|
2019-08-12 18:22:45 +02:00
|
|
|
"lodash": "^4.17.13",
|
2017-02-11 13:27:03 +01:00
|
|
|
"mime-types": "^2.1.14",
|
2017-08-14 17:18:15 +02:00
|
|
|
"moment": "^2.18.1",
|
2018-05-17 22:14:26 +02:00
|
|
|
"mousetrap": "^1.6.1",
|
2019-11-03 17:19:36 +01:00
|
|
|
"p-queue": "^6.2.0",
|
2019-01-28 02:25:31 +01:00
|
|
|
"prop-types": "^15.6.2",
|
|
|
|
"react": "^16.7.0",
|
|
|
|
"react-dom": "^16.7.0",
|
|
|
|
"react-hammerjs": "^1.0.1",
|
|
|
|
"react-sortable-hoc": "^1.5.3",
|
2016-11-08 20:36:44 +01:00
|
|
|
"read-chunk": "^2.0.0",
|
2019-01-28 02:25:31 +01:00
|
|
|
"string-to-stream": "^1.1.1",
|
2019-02-10 15:39:53 +01:00
|
|
|
"strong-data-uri": "^1.0.5",
|
2019-01-28 02:25:31 +01:00
|
|
|
"sweetalert2": "^8.0.1",
|
|
|
|
"sweetalert2-react-content": "^1.0.1",
|
2018-09-24 23:23:25 +02:00
|
|
|
"trash": "^4.3.0",
|
2019-01-28 18:09:54 +01:00
|
|
|
"uuid": "^3.3.2",
|
2016-10-30 11:57:12 +01:00
|
|
|
"which": "^1.2.11"
|
2019-11-04 04:32:03 +01:00
|
|
|
},
|
|
|
|
"browserslist": {
|
|
|
|
"production": [
|
|
|
|
"electron 7.0"
|
|
|
|
],
|
|
|
|
"development": [
|
|
|
|
"electron 7.0"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"build": {
|
|
|
|
"appId": "no.mifi.losslesscut",
|
|
|
|
"files": [
|
|
|
|
"build/**/*",
|
|
|
|
"!node_modules/ffmpeg-static/bin/**/*",
|
|
|
|
"!node_modules/ffprobe-static/bin/**/*"
|
|
|
|
],
|
|
|
|
"asar": {
|
|
|
|
"smartUnpack": false
|
|
|
|
},
|
|
|
|
"mac": {
|
|
|
|
"target": "dmg",
|
|
|
|
"extraResources": [
|
|
|
|
"node_modules/ffmpeg-static/bin/darwin/**",
|
|
|
|
"node_modules/ffprobe-static/bin/darwin/**"
|
|
|
|
],
|
|
|
|
"icon": "icon-build/app-512.png"
|
|
|
|
},
|
|
|
|
"win": {
|
|
|
|
"target": "portable",
|
|
|
|
"extraResources": [
|
|
|
|
"node_modules/ffmpeg-static/bin/win32/x64/**",
|
|
|
|
"node_modules/ffprobe-static/bin/win32/x64/**"
|
|
|
|
],
|
|
|
|
"icon": "icon-build/app-512.png"
|
|
|
|
},
|
|
|
|
"linux": {
|
|
|
|
"extraResources": [
|
|
|
|
"node_modules/ffmpeg-static/bin/linux/x64/**",
|
|
|
|
"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:43 +01:00
|
|
|
"target": ["tar.bz2", "snap", "AppImage"]
|
2019-11-04 04:32:03 +01:00
|
|
|
}
|
2016-10-30 11:57:12 +01:00
|
|
|
}
|
|
|
|
}
|