1
0
mirror of https://github.com/mifi/lossless-cut.git synced 2024-11-22 10:22:31 +01:00
lossless-cut/package.json

127 lines
3.6 KiB
JSON
Raw Normal View History

2016-10-30 11:57:12 +01:00
{
"name": "lossless-cut",
"productName": "LosslessCut",
"description": "Lossless video editor",
"copyright": "Copyright © 2019 ${author}",
2019-11-04 12:31:47 +01:00
"version": "2.6.0",
"main": "build/index.js",
2016-10-30 11:57:12 +01:00
"scripts": {
"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",
"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",
"gifify": "gifify -p 405:299 -r 5@3 Untitled.mov-00.00.00.971-00.00.19.780.mp4",
"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",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.16.0",
"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",
"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",
"electron-is-dev": "^0.1.2",
2016-10-30 11:57:12 +01:00
"execa": "^0.5.0",
"ffmpeg-static": "^2.7.0",
"ffprobe-static": "^3.0.0",
"file-type": "^12.4.0",
"github-api": "^3.2.2",
"hammerjs": "^2.0.8",
"jquery": "^3.4.0",
"lodash": "^4.17.13",
"mime-types": "^2.1.14",
2017-08-14 17:18:15 +02:00
"moment": "^2.18.1",
"mousetrap": "^1.6.1",
"p-queue": "^6.2.0",
"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",
"read-chunk": "^2.0.0",
"string-to-stream": "^1.1.1",
"strong-data-uri": "^1.0.5",
"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"
},
"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",
"target": "tar.bz2"
}
2016-10-30 11:57:12 +01:00
}
}