-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.73 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "@effective/favicon",
"version": "2.3.0",
"description": "Effective Favicon Generator",
"bin": {
"effective-favicon": "dist/cli.js"
},
"module": "dist/process.js",
"scripts": {
"check": "tsc --noEmit",
"build": "rimraf dist && tsc",
"prepare": "npm run build",
"format": "prettier --write src",
"lint": "eslint src",
"lint:fix": "eslint --fix src",
"release": "release-it",
"update:latest": "ncu --upgrade --interactive",
"update:minor": "ncu --upgrade --interactive --target minor",
"update:pnpm": "corepack up",
"test": "rimraf test/*.png test/*.iso test/*-opt.svg && tsx src/cli.js test"
},
"keywords": [
"icons",
"favicon",
"ios",
"android",
"manifest"
],
"files": [
"dist"
],
"author": {
"name": "Sebastian Werner",
"email": "[email protected]",
"url": "http://sebastian-software.de/werner"
},
"license": "Apache-2.0",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/sebastian-software/effective-favicon.git"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@effective/eslint-config": "^5.4.7",
"@types/node": "^20.14.13",
"eslint": "^8.57.0",
"npm-check-updates": "^16.14.20",
"release-it": "^17.6.0",
"rimraf": "^6.0.1",
"tsx": "^4.16.3",
"typescript": "^5.5.4"
},
"packageManager": "[email protected]+sha512.38dc6fba8dba35b39340b9700112c2fe1e12f10b17134715a4aa98ccf7bb035e76fd981cf0bb384dfa98f8d6af5481c2bef2f4266a24bfa20c34eb7147ce0b5e",
"dependencies": {
"commander": "^12.1.0",
"prettier": "^3.3.3",
"read-package-up": "^11.0.0",
"sharp": "^0.33.4",
"sharp-ico": "^0.1.5",
"svgo": "^3.3.2"
}
}