-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 816 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 816 Bytes
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
{
"name": "load-markdown-image",
"version": "1.0.10",
"description": "Download remote images in markdown files and store them locally",
"main": "dist/index.js",
"scripts": {
"build": "rollup -c rollup.config.js",
"dev": "rollup -c rollup.config.js -w"
},
"dependencies": {
"axios": "^0.25.0"
},
"repository": {
"type": "git",
"url": "git://github.com/junbin123/load-markdwon-image.git"
},
"keyword": [
"markdown",
"load-markdown-image",
"local markdown image",
"typora"
],
"bin": {
"load-markdown-image": "dist/index.js"
},
"author": "junbin123",
"license": "MIT",
"devDependencies": {
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-node-resolve": "^13.1.3",
"rollup": "^2.66.0",
"rollup-plugin-terser": "^7.0.2"
}
}