-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.23 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
{
"name": "@allenlee/rehype-image-process",
"version": "0.0.2",
"description": "A [rehype](https://rehype.js.org/) plugin for processing image nodes to add blur effect and width/height in compile time",
"author": "Allen Lee<[email protected]>",
"license": "MIT",
"type": "module",
"exports": "./index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/cangSDARM/rehype-image-process.git"
},
"bugs": {
"url": "https://github.com/cangSDARM/rehype-image-process/issues"
},
"homepage": "https://github.com/cangSDARM/rehype-image-process#readme",
"funding": "https://github.com/sponsors/cangSDARM",
"keywords": [
"rehype",
"rehype-plugin",
"unified",
"image",
"blur",
"nextjs"
],
"files": [
"index.js",
"index.d.ts"
],
"engines": {
"node": ">=14.0.0"
},
"scripts": {
"build": "tsc --noEmit false",
"test": "echo \"no test yet\""
},
"dependencies": {
"plaiceholder": "^2.5.0",
"unist-util-visit": "^4.1.2"
},
"devDependencies": {
"unified": "^10.0.0",
"@types/mdast": "^3.0.0",
"@types/node": "*",
"eslint": "^8.0.0",
"eslint-plugin-jsx-a11y": "^6.0.0",
"prettier": "^2.0.0",
"typescript": "^4.0.0"
}
}