-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
170 lines (170 loc) · 4.66 KB
/
package.json
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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
{
"name": "agora",
"version": "0.2.4",
"description": "Simple File Conversion Application",
"main": "main.js",
"author": "Mitch Pierias <github.com/MitchPierias>",
"private": false,
"homepage": ".",
"keywords": [
"Convert",
"Conversion",
"React",
"Electron",
"Redux",
"Lottie",
"ffmpeg"
],
"scripts": {
"start": "nf start",
"start:react": "webpack-dev-server --env development --progress",
"start:electron": "electron .",
"build": "webpack --env production --publish never",
"dist": "electron-builder --publish never --linux --mac",
"release": "npm run dist --publish always",
"docs": "./node_modules/.bin/typedoc --out ./docs --mode modules",
"test": "mocha"
},
"dependencies": {
"create-hash": "^1.2.0",
"ffmpeg-static": "^2.4.0",
"ffprobe-static": "^3.0.0",
"fluent-ffmpeg": "^2.1.2",
"lodash": "^4.17.4",
"react": "^16.5.x",
"react-dom": "^16.5.x",
"react-dropzone": "^3.13.4",
"react-lottie": "^1.2.3",
"react-redux": "^5.0.3",
"react-router": "^4.0.0",
"react-router-dom": "^4.3.x",
"react-spring": "^5.8.0",
"redux": "^3.6.0",
"redux-thunk": "^2.2.0"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "^6.24.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-1": "^6.22.0",
"chai": "^4.2.0",
"colors": "^1.3.2",
"css-loader": "^1.0.0",
"css-modules": "^0.3.0",
"electron": "^3.0.11",
"electron-builder": "^20.38.5",
"foreman": "^3.0.1",
"html-webpack-plugin": "^3.2.0",
"mocha": "^5.2.0",
"node-sass": "^4.10.0",
"react-scripts": "^2.1.1",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.0",
"typedoc": "^0.13.0",
"webpack": "^3.12.0",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^2.11.3"
},
"peerDependencies": {},
"build": {
"productName": "Agora",
"appId": "com.agora.app",
"copyright": "Copyright 2018 ${author}",
"directories": {
"buildResources": "build",
"output": "dist"
},
"files": [
"**/*",
"build/**/*",
"assets/**/*",
"!dist/**/*",
"!src/**/*",
"!spec/**/*",
"!config/**/*",
"!files/**/*",
"node_modules/**/*",
"node_modules/ffmpeg-static/bin/${os}/${arch}/ffmpeg",
"node_modules/ffmpeg-static/index.js",
"node_modules/ffmpeg-static/package.json",
"node_modules/ffprobe-static/bin/${os}/${arch}/ffmpeg",
"node_modules/ffprobe-static/index.js",
"node_modules/ffprobe-static/package.json",
"embedded.provisionprofile"
],
"mac": {
"target": [
"pkg",
"dmg",
"zip",
"mas"
],
"icon": "./assets/icons/512x512.png",
"category": "public.app-category.productivity",
"entitlements": "./build/entitlements.mac.plist",
"files": [
"!node_modules/ffmpeg-static/bin/win${/*}",
"!node_modules/ffmpeg-static/bin/linux${/*}",
"!node_modules/ffprobe-static/bin/win${/*}",
"!node_modules/ffprobe-static/bin/linux${/*}"
]
},
"mas": {
"type": "distribution",
"category": "public.app-category.productivity",
"entitlements": "./build/entitlements.mas.plist",
"icon": "./assets/agora.icns",
"files": [
"!node_modules/ffmpeg-static/bin/win${/*}",
"!node_modules/ffmpeg-static/bin/linux${/*}",
"!node_modules/ffprobe-static/bin/win${/*}",
"!node_modules/ffprobe-static/bin/linux${/*}"
]
},
"win": {
"target": [
"nsis"
],
"icon": "./assets/icon.ico",
"publisherName": "Mitch Pierias",
"files": [
"!node_modules/ffmpeg-static/bin/mac${/*}",
"!node_modules/ffmpeg-static/bin/linux${/*}",
"!node_modules/ffprobe-static/bin/mac${/*}",
"!node_modules/ffprobe-static/bin/linux${/*}"
]
},
"nsis": {
"artifactName": "${productName}_${version}.${ext}",
"installerIcon": "./assets/agora.ico"
},
"linux": {
"target": [
"deb"
],
"icon": "./assets/icons/512x512.png",
"files": [
"!node_modules/ffmpeg-static/bin/mac${/*}",
"!node_modules/ffmpeg-static/bin/win${/*}",
"!node_modules/ffprobe-static/bin/mac${/*}",
"!node_modules/ffprobe-static/bin/win${/*}"
]
},
"extends": null
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"repository": {
"type": "git",
"url": "https://github.com/MitchPierias/Agora"
},
"bugs": {
"url": "https://github.com/MitchPierias/Agora/issues"
}
}