-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
69 lines (69 loc) · 1.52 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
65
66
67
68
69
{
"name": "@photogabble/eleventy-plugin-interlinker",
"version": "1.1.0",
"description": "Obsidian WikiLinks, BackLinks and Embed support for 11ty",
"keywords": [
"11ty",
"eleventy",
"eleventy-plugin",
"backlinks",
"wikilinks",
"embedding",
"obsidian"
],
"main": "index.js",
"scripts": {
"buildcjs": "rollup index.js --file index.cjs --format cjs",
"prepublishOnly": "npm run buildcjs",
"test": "ava",
"test-coverage": "c8 ava"
},
"repository": {
"type": "git",
"url": "git+https://github.com/photogabble/eleventy-plugin-interlinker.git"
},
"author": "Simon Dann (https://photogabble.co.uk/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/photogabble/eleventy-plugin-interlinker/issues"
},
"homepage": "https://github.com/photogabble/eleventy-plugin-interlinker#readme",
"11ty": {
"compatibility": ">=2.0.0"
},
"ava": {
"failFast": true,
"files": [
"./tests/*.test.js"
],
"ignoredByWatcher": [
"**/_site/**",
".cache"
]
},
"type": "module",
"exports": {
"import": "./index.js",
"require": "./index.cjs"
},
"types": "index.d.ts",
"engines": {
"node": ">=18"
},
"dependencies": {
"chalk": "^4.1.1",
"entities": "^4.5.0",
"jsdom": "^25.0.1",
"markdown-it": "^14.1.0"
},
"devDependencies": {
"@11ty/eleventy": "^3.0.0",
"ava": "^5.2.0",
"c8": "^7.12.0",
"rollup": "^4.24.0",
"sinon": "^17.0.1"
},
"directories": {
"test": "tests"
}
}