-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 1.85 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 1.85 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
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
{
"name": "icons-cli",
"version": "1.1.1",
"description": "Generate app icons for all platforms - CLI and SDK",
"keywords": [
"android",
"apple",
"cli",
"facebook",
"favicon",
"icons",
"instagram",
"ios",
"ipad",
"iphone",
"linkedin",
"macos",
"pwa",
"sdk",
"social-media",
"tiktok",
"tvos",
"twitter",
"watchos",
"youtube"
],
"homepage": "https://github.com/kynnyhsap/icons-cli#readme",
"bugs": {
"url": "https://github.com/kynnyhsap/icons-cli/issues"
},
"license": "MIT",
"author": "Andrew Tobirat <tobirawork@gmail.com>",
"repository": {
"type": "git",
"url": "https://github.com/kynnyhsap/icons-cli.git"
},
"bin": {
"icons-cli": "./dist/cli.js",
"icons": "./dist/cli.js"
},
"files": [
"dist"
],
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"scripts": {
"build": "bun build src/cli.ts --outdir dist --target node && bun build src/index.ts --outdir dist --target node",
"cli": "bun run src/cli.ts",
"dev": "bun run src/cli.ts",
"fmt": "oxfmt --write .",
"readme": "bun run scripts/generate-readme-tables.ts",
"test": "bun test",
"typecheck": "tsgo",
"prepublishOnly": "bun run typecheck && bun run build"
},
"dependencies": {
"archiver": "^7.0.1",
"commander": "^14.0.2",
"glob": "^13.0.0",
"picocolors": "^1.1.1",
"sharp": "^0.34.5"
},
"devDependencies": {
"@types/archiver": "^7.0.0",
"@types/bun": "latest",
"@types/node": "^25.0.10",
"@typescript/native-preview": "^7.0.0-dev.20260122.4",
"oxfmt": "^0.26.0",
"poof": "^3.1.1"
},
"peerDependencies": {
"typescript": "^5"
},
"engines": {
"node": ">=18.0.0"
}
}