-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.33 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
{
"name": "@11ty/import",
"version": "1.0.8",
"description": "Utility to import content from multiple services (and a CLI, too)",
"type": "module",
"main": "./src/Importer.js",
"exports": {
".": "./src/Importer.js",
"./DataSource": "./src/DataSource.js"
},
"engines": {
"node": ">=18"
},
"bin": {
"eleventy-import": "cli.js"
},
"scripts": {
"test": "node --test",
"prepare": "husky"
},
"publishConfig": {
"access": "public"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/11ty"
},
"author": "Zach Leatherman <[email protected]> (https://zachleat.com/)",
"repository": {
"type": "git",
"url": "git://github.com/11ty/eleventy-import.git"
},
"bugs": "https://github.com/11ty/eleventy-import/issues",
"homepage": "https://www.11ty.dev/",
"license": "MIT",
"dependencies": {
"@11ty/eleventy-fetch": "^5.0.1",
"@11ty/posthtml-urls": "^1.0.0",
"@prettier/sync": "^0.5.2",
"@sindresorhus/slugify": "^2.2.1",
"dotenv": "^16.4.5",
"entities": "^5.0.0",
"fast-xml-parser": "^4.5.0",
"filesize": "^10.1.6",
"github-publish": "^6.0.0",
"graceful-fs": "^4.2.11",
"js-yaml": "^4.1.0",
"kleur": "^4.1.5",
"posthtml": "^0.16.6",
"prettier": "^3.4.1",
"striptags": "^3.2.0",
"turndown": "github:zachleat/fork-turndown"
},
"devDependencies": {
"husky": "^9.1.7"
}
}