-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
62 lines (62 loc) · 1.49 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
{
"name": "folderview",
"version": "2021.07.08",
"description": "Browse folder contents, with image slideshows, playable videos, and handy tools. Built for Windows (sorry).",
"keywords": [
"directories",
"folders",
"browser",
"image wall",
"slideshow",
"file tools",
"sftp"
],
"repository": {
"type": "git",
"url": "https://github.com/ChrisDeFreitas/Electron-FolderView"
},
"main": "main.js",
"os": [
"win32"
],
"config": {
"progress": true,
"save": true,
"save-dev": true
},
"author": "Chris DeFreitas",
"license": "ISC",
"directories": {
"bin": "./bin",
"dist": "./dist",
"lib": "./lib",
"scripts": "./scripts",
"tmp": "./tmp"
},
"dependencies": {
"electron": "^9.4.4",
"image-size": "^0.7.4",
"ini": "^1.3.8",
"isotope-layout": "^3.0.6",
"isotope-packery": "^2.0.1",
"mv": "^2.1.1",
"sanitize-filename": "^1.6.1",
"socket.io": "^2.4.1",
"ssh2": "^0.5.5",
"ytdl-core": "^4.8.3"
},
"devDependencies": {
"electron-packager": "^14"
},
"scripts": {
"start": "electron main.js",
"test": ".\\scripts\\testFolderView.bat",
"build": "npm run build:electron && npm run build:zip",
"build:electron": ".\\scripts\\electronPackager.bat",
"build:zip": ".\\scripts\\zip.bat",
"postbuild": "dir .\\dist\\",
"clean": "npm run clean:electron && npm run clean:tmp",
"clean:electron": "rmdir /q /s .\\dist\\",
"clean:tmp": "del /q ./tmp/*.*"
}
}