-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.39 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
{
"name": "@itinerisltd/bud-favicons",
"version": "0.1.0",
"description": "Bud.js extension to automatically generate favicons.",
"main": "index.js",
"license": "MIT",
"homepage": "https://github.com/ItinerisLtd/bud-favicons",
"repository": {
"type": "git",
"url": "https://github.com/ItinerisLtd/bud-favicons.git",
"directory": "sources/bud-favicons"
},
"publishConfig": {
"access": "public"
},
"bugs": "https://github.com/ItinerisLtd/bud-favicons/issues",
"keywords": [
"bud",
"extension",
"favicons",
"webpack-favicons",
"favicons-webpack-plugin"
],
"contributors": [
{
"email": "danlapteacru@gmail.com",
"name": "Dan Lapteacru",
"url": "https://github.com/danlapteacru"
}
],
"type": "module",
"exports": {
".": "./lib/index.js",
"./types": "./lib/types.js"
},
"typesVersions": {
"*": {
".": [
"./lib/index.js"
],
"types": [
"./lib/types.js"
]
}
},
"types": "./lib/index.d.ts",
"module": "./lib/index.js",
"files": [
"lib",
"src"
],
"devDependencies": {
"@roots/bud": "^6.23.3",
"@roots/bud-framework": "^6.23.3",
"@roots/bud-support": "^6.23.3",
"@roots/bud-typescript": "^6.23.3",
"@types/node": "18.17.9",
"tslib": "2.6.2"
},
"dependencies": {
"favicons": "^7.1.4",
"favicons-webpack-plugin": "^6.0.1"
}
}