mirror of
https://github.com/gavvvr/obsidian-imgur-plugin.git
synced 2026-07-22 05:10:27 +00:00
53 lines
1.5 KiB
JSON
53 lines
1.5 KiB
JSON
{
|
|
"name": "obsidian-imgur-plugin",
|
|
"version": "2.1.1",
|
|
"description": "This plugin uploads images from your clipboard to imgur.com and embeds uploaded image to your note",
|
|
"main": "main.js",
|
|
"scripts": {
|
|
"dev": "node esbuild.config.mjs",
|
|
"test": "vitest --coverage",
|
|
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
|
|
"prepare": "husky install",
|
|
"commit": "git-cz"
|
|
},
|
|
"config": {
|
|
"commitizen": {
|
|
"path": "@commitlint/cz-commitlint"
|
|
}
|
|
},
|
|
"keywords": [
|
|
"obsidian.md",
|
|
"imgur.com"
|
|
],
|
|
"author": "Kirill Gavrilov",
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"@commitlint/cli": "^16.1.0",
|
|
"@commitlint/config-conventional": "^16.0.0",
|
|
"@commitlint/cz-commitlint": "^16.1.0",
|
|
"@types/node": "^17.0.10",
|
|
"@typescript-eslint/eslint-plugin": "^5.10.1",
|
|
"@typescript-eslint/parser": "^5.10.1",
|
|
"builtin-modules": "^3.2.0",
|
|
"c8": "^7.11.3",
|
|
"commitizen": "^4.2.4",
|
|
"esbuild": "^0.14.13",
|
|
"eslint": "^8.7.0",
|
|
"eslint-config-airbnb-base": "^15.0.0",
|
|
"eslint-config-airbnb-typescript": "^16.1.0",
|
|
"eslint-config-prettier": "^8.3.0",
|
|
"eslint-plugin-import": "^2.25.4",
|
|
"husky": "^7.0.4",
|
|
"lint-staged": "^12.3.1",
|
|
"obsidian": "^0.13.21",
|
|
"obsidian-plugin-cli": "^0.8.1",
|
|
"prettier": "2.5.1",
|
|
"tslib": "^2.3.1",
|
|
"typescript": "^4.5.5",
|
|
"vitest": "^0.12.6"
|
|
},
|
|
"lint-staged": {
|
|
"*.{ts,js,css,md}": "prettier --write",
|
|
"*.ts": "eslint --cache --fix"
|
|
}
|
|
}
|