totocaster_triage-obsidian/package.json
Toto Tvalavadze 6fd2399b79
chore(release): publish 0.1.1
Update the README for the published community plugin listing and bump release metadata to 0.1.1 so the tag-triggered release workflow can publish matching Obsidian assets.
2026-06-12 16:16:47 +02:00

39 lines
972 B
JSON

{
"name": "triage",
"version": "0.1.1",
"description": "Resurfaces unprocessed notes in a triage queue.",
"author": "Toto Tvalavadze",
"homepage": "https://ttvl.co",
"license": "MIT",
"main": "main.js",
"type": "module",
"scripts": {
"dev": "node esbuild.config.mjs",
"build": "tsc --noEmit --skipLibCheck && node esbuild.config.mjs production",
"build:vault": "tsc --noEmit --skipLibCheck && node esbuild.config.mjs production",
"check": "tsc --noEmit --skipLibCheck",
"lint": "eslint .",
"test": "vitest run",
"test:watch": "vitest"
},
"keywords": [
"obsidian",
"obsidian-plugin",
"notes",
"triage"
],
"devDependencies": {
"@eslint/js": "^9.30.1",
"@types/node": "^20.16.5",
"esbuild": "0.25.5",
"eslint": "^9.30.1",
"eslint-plugin-obsidianmd": "0.1.9",
"globals": "14.0.0",
"jiti": "2.6.1",
"obsidian": "latest",
"tslib": "2.4.0",
"typescript": "^5.8.3",
"typescript-eslint": "8.35.1",
"vitest": "^4.1.7"
}
}