-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
44 lines (44 loc) · 1.05 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
{
"author": "Florian Imdahl <[email protected]>",
"bin": "dist/index.js",
"dependencies": {
"commander": "13.1.0",
"fs-extra": "11.3.0",
"icon-gen": "5.0.0",
"jimp": "1.6.0"
},
"description": "An icon generator to generate all the icon files needed for electron packaging",
"devDependencies": {
"@types/fs-extra": "11.0.4",
"@types/pngjs": "6.0.5",
"rimraf": "6.0.1",
"typescript": "5.7.3"
},
"engines": {
"node": ">= 18.0"
},
"exports": "./dist/index.js",
"files": [
"dist"
],
"keywords": [
"electron",
"icon",
"icns",
"png",
"ico"
],
"license": "GPL-3.0",
"module": "dist/index.js",
"name": "@ffflorian/electron-icon-generator",
"repository": "https://github.com/ffflorian/node-packages/tree/main/packages/electron-icon-generator",
"scripts": {
"build": "tsc -p tsconfig.json",
"clean": "rimraf dist",
"dist": "yarn clean && yarn build",
"start": "node --loader ts-node/esm src/cli.ts",
"test": "exit 0"
},
"type": "module",
"version": "1.7.2"
}