-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 2.74 KB
/
Copy pathpackage.json
File metadata and controls
99 lines (99 loc) · 2.74 KB
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
{
"name": "Splish",
"version": "1.2.0",
"description": "Desktop Micro-Video Editor",
"main": "main/main.js",
"scripts": {
"start": "electron .",
"rebuild": "electron-rebuild -w opencv4nodejs",
"build": "next build renderer && next export renderer",
"dist": "yarn run build && electron-builder --publish always",
"precommit": "lint-staged",
"postinstall": "electron-builder install-app-deps",
"pack": "yarn run build && electron-builder --dir"
},
"lint-staged": {
"*.{js,json,css}": ["prettier --write", "git add"]
},
"repository": "https://github.com/barooapp/splish-desktop",
"keywords": ["Splish", "Micro-video", "Editor", "Moving Photos"],
"author": "Baroo Reality, Inc.",
"license": "CC0-1.0",
"devDependencies": {
"babel-eslint": "^8.2.1",
"electron": "~1.7.8",
"electron-builder": "^20",
"electron-publisher-s3": "^20.0.0",
"electron-rebuild": "^1.7.3",
"eslint": "^4.15.0",
"eslint-config-fbjs": "^2.0.1",
"eslint-plugin-babel": "^4.1.2",
"eslint-plugin-flowtype": "^2.41.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.5.1",
"eslint-plugin-relay": "^0.0.20",
"husky": "^0.14.3",
"lint-staged": "^6.0.0",
"prettier": "^1.10.2",
"redux-devtools": "^3.4.1",
"redux-devtools-extension": "^2.13.2",
"redux-logger": "^3.0.6"
},
"dependencies": {
"@exponent/electron-cookies": "^2.0.0",
"app-root-path": "^2.0.1",
"d3": "^4.12.2",
"electron-is-dev": "^0.3.0",
"electron-log": "^2.2.14",
"electron-next": "^3.1.3",
"electron-updater": "^2.20.1",
"es6-promise": "^4.2.1",
"exif": "^0.6.0",
"ffmpeg-static": "^2.1.0",
"fluent-ffmpeg": "^2.1.2",
"image-size": "^0.6.2",
"next": "beta",
"next-redux-saga": "^1.0.1",
"next-redux-wrapper": "^1.3.5",
"rc-slider": "^8.6.0",
"react": "^16.2.0",
"react-clipboard.js": "^1.1.3",
"react-dom": "^16.2.0",
"react-draggable": "^3.0.5",
"react-feather": "^1.0.8",
"react-ga": "^2.4.1",
"react-redux": "^5.0.6",
"react-stack-grid": "^0.7.1",
"react-tippy": "^1.2.2",
"react-visibility-sensor": "^3.11.0",
"redux": "^3.7.2",
"redux-saga": "^0.16.0",
"tar-fs": "^1.16.0",
"zcapture.js": "^0.0.16"
},
"build": {
"appId": "io.splish.desktop",
"mac": {
"category": "public.app-category.video",
"type": "distribution"
},
"files": [
"**/*",
"!renderer",
"renderer/out",
"build/icon.*",
"!renderer/out/static/temp/"
],
"publish": [
{
"provider": "s3",
"bucket": "splish-desktop-releases"
},
{
"provider": "github",
"repo": "splish-desktop",
"owner": "barooapp"
}
]
}
}