mirror of
https://github.com/totocaster/triage-obsidian.git
synced 2026-07-22 07:44:16 +00:00
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.
39 lines
972 B
JSON
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"
|
|
}
|
|
}
|