-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.25 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.25 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
{
"name": "clips",
"displayName": "Clips",
"version": "2.1.0",
"description": "A simple clipping gallery as a replacement for Steelseries Moments. Use it with any other clipping program.",
"author": "yuma-dev",
"main": "main.js",
"scripts": {
"start": "electron .",
"build": "electron-builder --win",
"benchmark": "node benchmark/runner.js",
"benchmark:verbose": "node benchmark/runner.js --verbose",
"benchmark:json": "node benchmark/runner.js --output json",
"benchmark:openclip": "node benchmark/runner.js --suite openclip --verbose"
},
"build": {
"appId": "com.yuma-dev.clips",
"productName": "Clips",
"protocols": [
{
"name": "ClipLib",
"schemes": [
"cliplib"
]
}
],
"files": [
"assets/**/*",
"main/**/*",
"renderer/**/*",
"utils/**/*",
"templates/**/*",
"*.js",
"*.json",
"diagnostics/**/*.js",
"*.html",
"*.css",
"icon.ico"
],
"asarUnpack": [
"node_modules/ffmpeg-static/bin/${os}/${arch}/ffmpeg",
"node_modules/@ffprobe-installer/ffprobe/bin/${os}/${arch}/ffprobe"
],
"win": {
"target": [
"nsis"
],
"icon": "icon.ico",
"appId": "com.yuma-dev.clips"
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": false,
"createDesktopShortcut": true,
"createStartMenuShortcut": true,
"shortcutName": "Clips",
"uninstallDisplayName": "Clips",
"artifactName": "Clips Setup ${version}.${ext}",
"deleteAppDataOnUninstall": false
}
},
"keywords": [],
"license": "ISC",
"devDependencies": {
"acorn": "^8.15.0",
"acorn-walk": "^8.3.4",
"electron": "^31.1.0",
"electron-builder": "^24.13.3",
"electron-reload": "^2.0.0-alpha.1",
"electron-reloader": "^1.2.3"
},
"dependencies": {
"@ffmpeg-installer/ffmpeg": "^1.1.0",
"@ffprobe-installer/ffprobe": "^2.1.2",
"archiver": "^7.0.1",
"axios": "^1.7.2",
"chokidar": "^3.6.0",
"custom-electron-titlebar": "^4.2.8",
"discord-rpc": "^4.0.1",
"electron-squirrel-startup": "^1.0.1",
"ffmpeg-static": "^5.2.0",
"fluent-ffmpeg": "^2.1.3",
"readify": "^10.0.0",
"semver": "^7.6.3"
}
}