-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
53 lines (53 loc) · 1.22 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
{
"name": "openspin",
"version": "0.1.0",
"description": "An open source drop-in replacement for HyperSpin, a big screen front-end system for launching games and other media",
"main": "main.js",
"scripts": {
"start": "electron .",
"build": "electron-builder"
},
"build": {
"asarUnpack": [
"node_modules/ffmpeg-static",
"node_modules/ffprobe-static",
"plugins"
],
"files": [
"!HyperSpin/*"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/justindarc/openspin.git"
},
"keywords": [
"electron",
"frontend",
"launcher",
"hyperspin"
],
"author": {
"name": "Justin D'Arcangelo",
"email": "[email protected]",
"url": "https://github.com/justindarc"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/justindarc/openspin/issues"
},
"homepage": "https://github.com/justindarc/openspin#readme",
"devDependencies": {
"electron": "^2.0.2",
"electron-builder": "^20.15.1"
},
"dependencies": {
"ffmpeg-static": "^2.3.0",
"ffprobe-static": "^2.0.0",
"fluent-ffmpeg": "^2.1.2",
"ini": "^1.3.5",
"node-stream-zip": "^1.7.0",
"tmp": "^0.0.33",
"xml2js": "^0.4.19"
}
}