This repository has been archived by the owner on Jun 29, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
135 lines (135 loc) · 4.23 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
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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
{
"name": "tagviewer",
"productName": "TagViewer",
"version": "1.1.3",
"description": "A simple program that allows viewing of images under any tag, as well as modifying those tags.",
"repository": {
"type": "git",
"url": "git+https://github.com/tagviewer/tagviewer.git"
},
"homepage": "https://github.com/tagviewer/tagviewer#readme",
"main": "main.js",
"dependencies": {
"electron-squirrel-startup": "^1.0.0",
"fs-extra": "^9.0.0",
"image-size": "^0.8.3",
"trash": "^6.1.1"
},
"devDependencies": {
"@electron-forge/cli": "^6.0.0-beta.52",
"@electron-forge/maker-deb": "^6.0.0-beta.52",
"@electron-forge/maker-dmg": "^6.0.0-beta.52",
"@electron-forge/maker-flatpak": "^6.0.0-beta.52",
"@electron-forge/maker-rpm": "^6.0.0-beta.52",
"@electron-forge/maker-squirrel": "^6.0.0-beta.52",
"@electron-forge/maker-zip": "^6.0.0-beta.52",
"@linthtml/linthtml": "^0.4.1",
"electron": "^9.0.4",
"eslint": "^7.3.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"stylelint": "^13.6.0",
"stylelint-config-standard": "^20.0.0"
},
"scripts": {
"start": "electron-forge start",
"package": "electron-forge package",
"make": "electron-forge make",
"make-debug": "DEBUG=electron-forge:*,electron-installer-flatpak,flatpak-bundler electron-forge make"
},
"keywords": [
"tag",
"viewer",
"media",
"files",
"sorting",
"tags",
"categorization",
"organization"
],
"author": "Matt Fellenz",
"license": "GPL-3.0-only",
"config": {
"forge": {
"packagerConfig": {
"ignore": [
"^\\/lib\\/((?!min).)*$",
"^\\/rawicons",
"^\\/translatorphrases\\.txt"
],
"executableName": "tagviewer",
"icon": "icons/universal/icon"
},
"makers": [
{
"name": "@electron-forge/maker-squirrel",
"config": {
"title": "TagViewer",
"name": "tagviewer",
"copyright": "TagViewer © 2020 Matt Fellenz",
"iconUrl": "file://icons/universal/icon.ico",
"noMsi": false,
"setupExe": "tagviewerSetup.exe",
"setupMsi": "tagviewerSetup.msi",
"setupIcon": "icons/universal/icon.ico"
}
},
{
"name": "@electron-forge/maker-zip"
},
{
"name": "@electron-forge/maker-deb",
"config": {
"productDescription": "A simple program that allows viewing of images under any tag, as well as modifying those tags.",
"version": "1.1.3",
"section": [
"utils",
"graphics"
],
"name": "tagviewer",
"depends": [],
"categories": [
"Utility",
"Graphics"
],
"description": "A simple program that allows viewing of images under any tag, as well as modifying those tags.",
"genericName": "Media Organizer",
"icon": "icons/png/512x512.png",
"homepage": "github.com/tagviewer/tagviewer",
"maintainer": "Matt Fellenz <[email protected]>"
}
},
{
"name": "@electron-forge/maker-rpm",
"config": {
"productDescription": "A simple program that allows viewing of images under any tag, as well as modifying those tags.",
"version": "1.1.3",
"section": [
"utils",
"graphics"
],
"name": "tagviewer",
"categories": [
"Utility",
"Graphics"
],
"description": "A simple program that allows viewing of images under any tag, as well as modifying those tags.",
"genericName": "Media Organizer",
"icon": "icons/png/512x512.png",
"license": "GPL-3.0-only",
"maintainer": "Matt Fellenz <[email protected]>"
}
},
{
"name": "@electron-forge/maker-dmg",
"config": {
"icon": "icons/universal/icon.icns",
"name": "TagViewer"
}
}
]
}
}
}