-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.04 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
70
71
72
73
74
75
{
"author": "Benjamin Charity <[email protected]> (https://www.benjamincharity.com/)",
"bugs": {
"url": "https://github.com/benjamincharity/rehype-semantic-images/issues"
},
"dependencies": {
"rehype": "^13.0.0",
"unified": "^11.0.0",
"unist-util-visit": "^5.0.0"
},
"description": "This unified ecosystem plugin enriches HTML images with semantic elements and customizable features, improving accessibility and performance through options like lazy loading and dynamic source modification.",
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/hast": "^3.0.4",
"@types/node": "^20.11.16",
"@vitest/coverage-v8": "^1.2.2",
"hast-util-select": "6.0.2",
"hast-util-to-html": "^9.0.0",
"hastscript": "^9.0.0",
"prettier": "^3.2.4",
"rehype-minify-whitespace": "^6.0.0",
"rimraf": "^5.0.5",
"to-vfile": "^8.0.0",
"type-coverage": "^2.27.1",
"typecov": "~0.2.3",
"typescript": "^5.3.3",
"vite": "^5.0.12",
"vitest": "^1.2.2",
"xo": "~0.56.0"
},
"engines": {
"node": ">=18.0.0"
},
"files": [
"dist"
],
"homepage": "https://github.com/benjamincharity/rehype-semantic-images#readme",
"keywords": [
"rehype",
"rehype-plugin",
"unified",
"unified-plugin",
"html",
"images",
"figure"
],
"license": "MIT",
"main": "dist/index.js",
"module": "dist/index.js",
"name": "@benjc/rehype-semantic-images",
"repository": {
"type": "git",
"url": "git+https://github.com/benjamincharity/rehype-semantic-images.git"
},
"scripts": {
"build": "tsc",
"coverage": "vitest run --coverage",
"coverage:types": "type-coverage",
"format": "prettier --write .",
"lint": "xo --prettier",
"lint:fix": "xo --fix --prettier",
"prebuild": "rimraf dist",
"test": "vitest",
"typecheck": "tsc --noEmit"
},
"type": "module",
"typeCoverage": {
"atLeast": 97,
"detail": true,
"ignoreCatch": true,
"strict": true
},
"types": "dist/index.d.ts",
"version": "0.1.1"
}