-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 922 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
{
"name": "@saiballo/eleventy-plugin-svg-embed",
"version": "1.0.1",
"description": "A plugin for 11ty that, through a shortcut, allows you to include an SVG image either as an embed or as a file",
"main": "main.js",
"keywords": [
"11ty",
"eleventy",
"eleventy-plugin",
"embed svg"
],
"license": "MIT",
"author": {
"name": "Lorenzo \"Saibal\" Forti",
"email": "[email protected]"
},
"homepage": "https://github.com/saiballo/eleventy-plugin-svg-embed#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/saiballo/eleventy-plugin-svg-embed.git"
},
"bugs": {
"url": "https://github.com/saiballo/eleventy-plugin-svg-embed"
},
"engines": {
"node": ">=16"
},
"11ty": {
"compatibility": ">=2.0.0"
},
"scripts": {
"refresh": "rm -rf node_modules && rm package-lock.json && npm install"
},
"dependencies": {
"cheerio": "^1.0.0",
"mime-types": "^2.1.35"
}
}