mirror of
https://github.com/gavvvr/obsidian-imgur-plugin.git
synced 2026-07-22 05:10:27 +00:00
67 lines
1.8 KiB
JSON
67 lines
1.8 KiB
JSON
{
|
|
"name": "obsidian-imgur-plugin",
|
|
"description": "This plugin uploads images from your clipboard to imgur.com and embeds uploaded image to your note",
|
|
"main": "main.js",
|
|
"type": "module",
|
|
"private": true,
|
|
"scripts": {
|
|
"dev": "node scripts/dev.js",
|
|
"test": "vitest --coverage",
|
|
"build": "tsc -noEmit -skipLibCheck && node scripts/esbuild.build.js production",
|
|
"prepare": "husky",
|
|
"commit": "git-cz",
|
|
"test:e2e": "wdio run ./test/e2e/wdio.conf.ts",
|
|
"test:eslint": "eslint --cache"
|
|
},
|
|
"config": {
|
|
"commitizen": {
|
|
"path": "@commitlint/cz-commitlint"
|
|
}
|
|
},
|
|
"keywords": [
|
|
"obsidian.md",
|
|
"imgur.com"
|
|
],
|
|
"author": "Kirill Gavrilov",
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"@commitlint/cli": "19.5.0",
|
|
"@commitlint/config-conventional": "19.5.0",
|
|
"@commitlint/cz-commitlint": "19.5.0",
|
|
"@types/node": "22.8.4",
|
|
"@vitest/coverage-v8": "2.1.3",
|
|
"@vitest/ui": "2.1.3",
|
|
"@wdio/cli": "9.2.1",
|
|
"@wdio/globals": "9.2.1",
|
|
"@wdio/local-runner": "9.2.1",
|
|
"@wdio/mocha-framework": "9.1.3",
|
|
"@wdio/spec-reporter": "9.1.3",
|
|
"commitizen": "4.3.1",
|
|
"electron": "33.0.1",
|
|
"enquirer": "2.4.1",
|
|
"esbuild": "0.24.0",
|
|
"eslint": "9.13.0",
|
|
"eslint-plugin-perfectionist": "3.9.1",
|
|
"eslint-plugin-wdio": "9.0.8",
|
|
"expect-webdriverio": "5.0.3",
|
|
"globals": "15.11.0",
|
|
"husky": "9.1.6",
|
|
"lint-staged": "15.2.10",
|
|
"obsidian": "1.7.2",
|
|
"obsidian-utils": "0.10.2",
|
|
"prettier": "3.3.3",
|
|
"ts-node": "10.9.2",
|
|
"tslib": "2.8.0",
|
|
"tsx": "4.19.1",
|
|
"typescript": "5.6.3",
|
|
"typescript-eslint": "8.10.0",
|
|
"vitest": "2.1.3",
|
|
"wdio-electron-service": "7.1.0",
|
|
"webdriverio": "9.2.1"
|
|
},
|
|
"lint-staged": {
|
|
"*.{ts,js,css,md}": "prettier --write",
|
|
"*.ts": "eslint --cache --fix"
|
|
},
|
|
"packageManager": "pnpm@9.12.3"
|
|
}
|