-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
68 lines (68 loc) · 1.67 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
66
67
68
{
"name": "astro-favicons",
"version": "3.1.5",
"description": "An all-in-one favicon and PWA assets generator for Astro projects. It automates the creation of favicons, manifest, and supports hot reloading for efficient development. Powered by `astro-capo`, it keeps your ﹤𝚑𝚎𝚊𝚍﹥ content well-organized and tidy.",
"type": "module",
"main": "./dist/index.mjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"exports": {
".": {
"types": "./dist/index.d.mts",
"import": "./dist/index.mjs"
},
"./middleware": {
"types": "./dist/middleware.d.mts",
"import": "./dist/middleware.mjs"
}
},
"files": [
"dist/"
],
"scripts": {
"fmt": "prettier --write .",
"build": "unbuild",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ACP-CODE/astro-favicons.git"
},
"keywords": [
"astro",
"astro-integration",
"favicons",
"web-manifest",
"apple-icons",
"apple-startup",
"Capo.js",
"pwa",
"manifest.webmanifest",
"browserconfig.xml",
"yandex-browser-manifest.json",
"android",
"android-chrome",
"windows",
"windows-tile",
"yandex"
],
"author": "Junlin",
"license": "MIT",
"bugs": {
"url": "https://github.com/ACP-CODE/astro-favicons/issues"
},
"homepage": "https://github.com/ACP-CODE/astro-favicons#readme",
"dependencies": {
"favilib": "^1.0.5",
"ultrahtml": "^1.5.3"
},
"devDependencies": {
"@types/node": "^22.10.1",
"astro": "4.16.18",
"prettier": "^3.3.3",
"unbuild": "^2.0.0"
},
"peerDependencies": {
"astro": ">= 4.0.0"
}
}