-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.15 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.15 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
{
"name": "stockroom",
"productName": "StockRoom",
"version": "0.5.1",
"author": "Warabi Mocchi",
"description": "Video and Image asset manager",
"main": "main.cjs",
"type": "module",
"scripts": {
"start": "electron .",
"dev": "electron . --dev",
"postinstall": "electron-builder install-app-deps",
"dist": "electron-builder",
"license:check": "license-checker --summary",
"license:list": "license-checker --csv --out licenses.csv"
},
"dependencies": {
"ffmpeg-static": "^5.2.0",
"fluent-ffmpeg": "^2.1.2",
"better-sqlite3": "^11.0.0"
},
"devDependencies": {
"electron": "^27.0.0",
"electron-builder": "^24.13.3",
"license-checker": "^25.0.1"
},
"build": {
"appId": "com.stockroom.app",
"productName": "StockRoom",
"files": [
"**/*",
"!dist/*",
"!licenses.csv"
],
"directories": {
"output": "dist"
},
"win": {
"target": "nsis",
"icon": "icon.ico"
},
"mac": {
"target": "dmg",
"icon": "icon.icns"
},
"asarUnpack": [
"node_modules/ffmpeg-static/**",
"node_modules/better-sqlite3/**"
]
}
}