-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.15 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.15 KB
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
{
"name": "seticon-cli",
"version": "1.3.0",
"description": "Cross-platform CLI to change folder icons on Windows, macOS and Linux, with automatic PNG to ICO conversion on Windows",
"main": "seticon.js",
"type": "module",
"bin": {
"seticon": "seticon.js"
},
"files": [
"seticon.js",
"src/",
"assets/",
"README.md",
"LICENSE"
],
"scripts": {
"start": "node seticon.js"
},
"keywords": [
"icon",
"folder",
"folder-icon",
"cli",
"ico",
"png-to-ico",
"cross-platform",
"windows",
"macos",
"linux",
"gnome",
"kde",
"desktop-ini"
],
"author": "Divor <todjropatrice2002@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/goddivor/seticon-cli.git"
},
"bugs": {
"url": "https://github.com/goddivor/seticon-cli/issues"
},
"homepage": "https://github.com/goddivor/seticon-cli#readme",
"engines": {
"node": ">=18.17.0"
},
"os": [
"win32",
"darwin",
"linux"
],
"dependencies": {
"decode-bmp": "^0.2.1",
"ico-extract": "^0.1.0",
"png-to-ico": "^3.0.1",
"sharp": "^0.34.5"
}
}