-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 986 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
{
"name": "@daveyplate/generate-icons",
"homepage": "https://github.com/daveyplate/generate-icons",
"version": "1.0.6",
"description": "Generates icons from a source image, including favicon, manifest and apple-touch-icon",
"main": "dist/index",
"types": "dist/index",
"files": [
"src",
"dist"
],
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"prepublishOnly": "rm -rf dist && npm run build",
"generate-icons": "node dist/generate-icons.js"
},
"bin": {
"generate-icons": "dist/generate-icons.js"
},
"keywords": [
"generate",
"icons",
"favicon",
"manifest",
"apple-touch-icon"
],
"author": "daveycodez",
"license": "ISC",
"devDependencies": {
"@types/imagemin": "^9.0.0",
"@types/node": "^22.10.1",
"@types/yargs": "^17.0.33",
"typescript": "^5.6.2"
},
"dependencies": {
"imagemin": ">=9.0.0",
"sharp": ">=0.33.5",
"ts-node": ">=10.9.0",
"yargs": ">=17.7.2"
}
}