-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.42 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.42 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
{
"name": "fmvmachine",
"version": "0.1.0",
"description": "A cross-platform, locally-running interactive video editor using H5P",
"main": "main.js",
"scripts": {
"start": "electron .",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "electron-builder",
"pack": "electron-builder --dir",
"dist": "electron-builder",
"dist:mac": "electron-builder --mac",
"dist:win": "electron-builder --win",
"dist:linux": "electron-builder --linux"
},
"keywords": [
"video",
"editor",
"interactive",
"H5P",
"electron"
],
"author": "Midnight Roach Media",
"license": "MIT",
"devDependencies": {
"electron": "^31.3.1",
"electron-builder": "^24.13.3"
},
"dependencies": {
"fs-extra": "^11.2.0",
"glob": "^11.0.0",
"h5p-standalone": "^3.5.1",
"jszip": "^3.10.1"
},
"overrides": {
"glob": "^11.0.0"
},
"engines": {
"node": ">=18.0.0"
},
"build": {
"appId": "com.midnightroachmedia.fmvmachine",
"productName": "FMVMachine",
"files": [
"**/*",
"!.gitignore"
],
"mac": {
"category": "public.app-category.video",
"icon": "assets/icoMacOs.icns"
},
"win": {
"target": [
"nsis"
],
"icon": "assets/icoWindows.ico"
},
"linux": {
"target": [
"AppImage",
"deb"
],
"category": "Video",
"icon": "assets/icoLinux.png"
},
"directories": {
"output": "release/"
}
}
}