mirror of
https://github.com/nota/gyazo-obsidian-plugin.git
synced 2026-07-22 12:50:24 +00:00
41 lines
1.2 KiB
JSON
41 lines
1.2 KiB
JSON
{
|
|
"name": "obsidian-gyazo-plugin",
|
|
"version": "1.0.2",
|
|
"description": "Displays and embeds Gyazo captures in Obsidian",
|
|
"main": "main.js",
|
|
"scripts": {
|
|
"lint": "npm run lint:eslint && npm run lint:prettier",
|
|
"lint:eslint": "eslint .",
|
|
"lint:prettier": "prettier . --check",
|
|
"lint:fix": "npm run lint:eslint:fix && npm run lint:prettier:fix",
|
|
"lint:eslint:fix": "eslint src --fix",
|
|
"lint:prettier:fix": "prettier . --write",
|
|
"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"
|
|
},
|
|
"keywords": [
|
|
"obsidian",
|
|
"plugin",
|
|
"gyazo",
|
|
"image",
|
|
"capture"
|
|
],
|
|
"author": "Helpfeel Inc.",
|
|
"license": "GPL-3.0",
|
|
"devDependencies": {
|
|
"@types/node": "^22.0.0",
|
|
"@typescript-eslint/eslint-plugin": "8.32.1",
|
|
"@typescript-eslint/parser": "8.32.1",
|
|
"builtin-modules": "5.0.0",
|
|
"esbuild": "0.25.4",
|
|
"eslint-config-prettier": "^10.1.5",
|
|
"obsidian": "latest",
|
|
"prettier": "^3.5.3",
|
|
"tslib": "2.8.1",
|
|
"typescript": "5.8.3"
|
|
},
|
|
"dependencies": {
|
|
"preact": "^10.26.6"
|
|
}
|
|
}
|