forked from xiphux/rehype-svimg
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 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
51
52
{
"name": "rehype-svimg",
"version": "0.3.0",
"private": false,
"description": "A rehype plugin for preprocessing and lazy loading images using the svimg Svelte component",
"main": "dist/index.js",
"module": "dist/index.es.js",
"files": [
"dist"
],
"types": "dist/index.d.ts",
"scripts": {
"test": "jest",
"build": "rollup -c",
"watch": "rollup -cw"
},
"keywords": [
"rehype",
"rehype-plugin",
"svimg",
"svelte",
"image",
"unified"
],
"author": "Chris Han <[email protected]> (chris-han.com)",
"homepage": "https://github.com/xiphux/rehype-svimg",
"bugs": {
"url": "https://github.com/xiphux/rehype-svimg/issues",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/xiphux/rehype-svimg.git"
},
"license": "ISC",
"devDependencies": {
"@types/jest": "^28.1.3",
"@types/node": "^18.0.0",
"@types/unist": "2.0.3",
"jest": "^28.1.1",
"rollup": "^2.75.7",
"rollup-plugin-typescript2": "^0.32.1",
"ts-jest": "^28.0.5",
"tslib": "^2.4.0",
"typescript": "^4.7.4",
"unified": "^9.2.1"
},
"dependencies": {
"svimg": "^2.0.0",
"unist-util-visit": "^2.0.3"
}
}