-
Notifications
You must be signed in to change notification settings - Fork 41
/
package.json
72 lines (72 loc) · 1.8 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "sharedown",
"author": "kylon",
"repository": "https://github.com/kylon/Sharedown",
"homepage": "https://github.com/kylon/Sharedown",
"license": "GPL-3.0-or-later",
"version": "5.3.4",
"description": "Electron application to save your Sharepoint videos for offline usage (especially meant for students)",
"main": "app.js",
"scripts": {
"start": "electron .",
"test": "echo \"this app has no tests\" && exit 1",
"pack": "electron-builder --dir",
"dist": "electron-builder"
},
"build": {
"appId": "com.electron.sharedown",
"copyright": "Copyright © 2023 kylon",
"beforePack": "buildHooks/beforePack.js",
"afterAllArtifactBuild": "buildHooks/afterAllArtifactBuild.js",
"mac": {
"category": "public.app-category.video",
"target": {
"target": "dmg",
"arch": ["arm64", "x64"]
}
},
"win": {
"target": [
{
"target": "nsis",
"arch": ["x64"]
},
{
"target": "zip",
"arch": ["x64"]
}
]
},
"linux": {
"category": "AudioVideo",
"target": "AppImage"
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true,
"installerIcon": "build/wicon.ico",
"uninstallerIcon": "build/wicon.ico"
},
"portable": {
"artifactName": "${productName} ${version} portable.exe"
},
"appImage": {
"license": "LICENSE"
}
},
"keywords": [],
"devDependencies": {
"electron": "^33.0.2",
"electron-builder": "^25.1.8"
},
"dependencies": {
"@fortawesome/fontawesome-free": "6.6.0",
"axios": "^1.7.7",
"bootstrap": "5.3.3",
"clipboardy": "2.3.0",
"fessonia": "^2.2.2",
"iso8601-duration": "^2.1.2",
"keytar": "^7.9.0",
"puppeteer": "23.6.1"
}
}