-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.37 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.37 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
{
"name": "@11ty/font-awesome",
"version": "1.0.1",
"type": "module",
"main": "plugin.js",
"description": "Optimized per-page tree-shaken SVG spritesheets for Eleventy.",
"publishConfig": {
"access": "public"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/11ty"
},
"author": "Zach Leatherman <zachleatherman@gmail.com> (https://zachleat.com/)",
"repository": {
"type": "git",
"url": "git://github.com/11ty/eleventy-plugin-font-awesome.git"
},
"bugs": "https://github.com/11ty/eleventy-plugin-font-awesome/issues",
"homepage": "https://github.com/11ty/eleventy-plugin-font-awesome",
"license": "MIT",
"engines": {
"node": ">=18"
},
"scripts": {
"update-prefixes": "node src/get-prefixes.js",
"test": "npx ava",
"demo": "npx @11ty/eleventy --input=demo --config=demo/eleventy.config.js",
"start": "npx @11ty/eleventy --input=demo --config=demo/eleventy.config.js --serve"
},
"devDependencies": {
"@11ty/eleventy": "^3.1.2",
"ava": "^6.4.1"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^7.1.0",
"@fortawesome/free-brands-svg-icons": "^7.1.0",
"@fortawesome/free-regular-svg-icons": "^7.1.0",
"@fortawesome/free-solid-svg-icons": "^7.1.0",
"debug": "^4.4.3",
"entities": "^7.0.0",
"nanoid": "^5.1.6",
"posthtml-match-helper": "^2.0.3"
}
}