mirror of
https://github.com/yinshaohua/obsidian-download-image.git
synced 2026-07-22 06:51:07 +00:00
33 lines
888 B
JSON
33 lines
888 B
JSON
{
|
|
"name": "download-image",
|
|
"version": "1.0.0",
|
|
"description": "Download remote images in the current note to local vault storage.",
|
|
"main": "main.js",
|
|
"type": "module",
|
|
"scripts": {
|
|
"deps:install": "npm install",
|
|
"dev": "node esbuild.config.mjs",
|
|
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
|
|
"version": "node version-bump.mjs && git add manifest.json versions.json",
|
|
"lint": "eslint .",
|
|
"test": "vitest run",
|
|
"verify-release": "node scripts/verify-release.mjs"
|
|
},
|
|
"keywords": [],
|
|
"license": "0-BSD",
|
|
"devDependencies": {
|
|
"@eslint/js": "9.30.1",
|
|
"@types/node": "^22.12.0",
|
|
"esbuild": "^0.28.0",
|
|
"eslint-plugin-obsidianmd": "0.1.9",
|
|
"globals": "14.0.0",
|
|
"jiti": "2.6.1",
|
|
"tslib": "2.4.0",
|
|
"typescript": "^5.8.3",
|
|
"typescript-eslint": "8.35.1",
|
|
"vitest": "^4.1.4"
|
|
},
|
|
"dependencies": {
|
|
"obsidian": "latest"
|
|
}
|
|
}
|