-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 loc) · 1.19 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
{
"name": "eleventy-img-helper",
"version": "0.4.0",
"description": "Eleventy plugin to convert <img> tags in generated HTML to responsive image markup based on CSS selectors, using the eleventy-img utility.",
"main": ".eleventy.js",
"files": [
".eleventy.js",
"lib"
],
"scripts": {
"test": "echo \"No tests yet!\" && exit 0",
"prepublish": "tsc",
"build": "tsc"
},
"homepage": "https://github.com/adueppen/eleventy-img-helper",
"repository": {
"type": "git",
"url": "https://github.com/adueppen/eleventy-img-helper.git"
},
"bugs": {
"url": "https://github.com/adueppen/eleventy-img-helper/issues"
},
"keywords": [
"11ty",
"eleventy",
"eleventy-plugin",
"images",
"picture",
"responsive-images"
],
"author": {
"name": "Alex Dueppen",
"email": "[email protected]",
"url": "https://ajd.sh"
},
"license": "MIT",
"dependencies": {
"@11ty/eleventy": "^2.0.1",
"@11ty/eleventy-img": "^3.1.1",
"@types/11ty__eleventy-img": "^2.0.3",
"deepmerge": "^4.3.1",
"linkedom": "^0.15.4",
"specificity": "^1.0.0"
},
"devDependencies": {
"@tsconfig/node16": "^16.1.1",
"typescript": "^5.2.2"
}
}