-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 983 Bytes
/
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
{
"name": "make-icns",
"version": "1.2.2",
"description": "A CLI to help you convert a single PNG file into an ICNS file.",
"main": "index.js",
"type": "module",
"scripts": {
"start": "node index.js"
},
"author": "Dang Khoa Chiem",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/dkchiem/make-icns.git"
},
"dependencies": {
"@fiahfy/icns": "^0.0.7",
"cli-progress": "^3.8.2",
"colors": "^1.4.0",
"image-size": "^1.0.2",
"is-valid-path": "^0.1.1",
"minimist": "^1.2.8",
"sharp": "^0.32.0",
"update-notifier": "^6.0.2"
},
"bin": {
"mk-icns": "./index.js"
},
"bugs": {
"url": "https://github.com/dkchiem/make-icns/issues"
},
"homepage": "https://github.com/dkchiem/make-icns",
"devDependencies": {
"prettier": "^2.0.5"
},
"keywords": [
"CLI",
"generator",
"cli",
"png",
"icns",
"icon",
"image",
"convert",
"converter"
]
}