forked from jaretburkett/electron-icon-maker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.22 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
{
"name": "@mrkpatchaa/electron-icon-maker-forge",
"version": "0.0.2",
"description": "An icon generator to generate all the icon files needed for electron packaging with forge",
"bin": {
"electron-icon-maker-forge": "index.js"
},
"main": "index.js",
"scripts": {
"prepack": "npmignore --auto",
"test": "node index.js -i=electron.png -o=./ -n electron"
},
"publishConfig": {
"ignore": [
"electron.png"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/mrkpatchaa/electron-icon-maker.git"
},
"keywords": [
"electron",
"icon",
"maker",
"icns",
"png",
"ico"
],
"author": "Médédé Raymond KPATCHAA <[email protected]> (https://github.com/mrkpatchaa/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/mrkpatchaa/electron-icon-maker/issues"
},
"homepage": "https://github.com/mrkpatchaa/electron-icon-maker",
"dependencies": {
"args": "^5.0.3",
"icon-gen": "4.0.0",
"sharp": "^0.33.2"
},
"devDependencies": {
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"npmignore": "^0.3.1",
"prettier": "^3.2.2"
}
}