-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 2.4 KB
/
package.json
File metadata and controls
100 lines (100 loc) · 2.4 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
100
{
"name": "anima",
"version": "1.2.0",
"description": "2D animation software",
"author": "idkthisguy",
"main": "main.js",
"scripts": {
"start": "electron .",
"dev": "cross-env NODE_ENV=development electron .",
"dist:win": "electron-builder --win",
"dist:linux": "electron-builder --linux",
"dist:all": "electron-builder --win --linux"
},
"build": {
"appId": "com.idkthisguy.anima",
"productName": "Anima",
"compression": "maximum",
"directories": {
"output": "dist/Anima-v${version}"
},
"files": [
"**/*",
"!dist/*",
"!build/*",
"!node_modules/gsap/*"
],
"fileAssociations": [
{
"ext": "anima",
"name": "Anima Project",
"description": "Anima Animation Project File",
"role": "Editor",
"icon": "icon.ico"
}
],
"win": {
"icon": "icon.ico",
"artifactName": "Anima-v${version}-win-${arch}.${ext}",
"target": [
{
"target": "nsis",
"arch": [
"x64",
"arm64"
]
},
{
"target": "portable",
"arch": [
"x64"
]
}
]
},
"portable": {
"artifactName": "Anima-v${version}-win-${arch}-portable.${ext}"
},
"linux": {
"icon": "icon.png",
"category": "Graphics",
"artifactName": "Anima-v${version}-linux-${arch}.${ext}",
"target": [
{
"target": "AppImage",
"arch": [
"x64",
"arm64"
]
}
]
},
"nsis": {
"oneClick": false,
"perMachine": true,
"allowToChangeInstallationDirectory": true,
"license": "LICENSE.txt",
"createDesktopShortcut": true,
"createStartMenuShortcut": true,
"shortcutName": "Anima",
"uninstallDisplayName": "Anima Animation Tool",
"runAfterFinish": true,
"installerIcon": "icon.ico",
"uninstallerIcon": "icon.ico",
"include": "build/installer.nsh",
"installerHeaderIcon": "icon.ico",
"installerSidebar": "build/sidebar-installer.bmp",
"uninstallerSidebar": "build/sidebar-uninstaller.bmp"
}
},
"devDependencies": {
"electron": "^40.6.1",
"electron-builder": "^26.8.1",
"electron-reloader": "^1.2.3",
"cross-env": "^10.1.0"
},
"dependencies": {
"ffmpeg-static": "^5.3.0",
"fluent-ffmpeg": "^2.1.3"
}
}