Files
zettelclean/package.json

32 lines
941 B
JSON
Raw Permalink Normal View History

{
2026-07-28 16:52:19 -03:00
"name": "zettelclean",
2026-07-31 09:18:34 -03:00
"version": "0.6.1",
2026-07-28 16:52:19 -03:00
"description": "Keep a Zettelkasten filename's slug in sync with the note's H1 heading.",
"author": "Ruben Carlo Benante <rcb@beco.cc>",
"main": "main.js",
"type": "module",
"packageManager": "pnpm@9.15.9",
"scripts": {
"dev": "node esbuild.config.mjs",
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
2026-07-28 16:52:19 -03:00
"test": "node --test \"src/**/*.test.ts\"",
"test:watch": "node --test --watch \"src/**/*.test.ts\"",
"version": "node version-bump.mjs && git add manifest.json versions.json",
"lint": "eslint ."
},
"keywords": [],
"license": "GPL-3.0-or-later",
"devDependencies": {
"@eslint/js": "^9.39.4",
"@types/node": "^22.15.17",
"esbuild": "0.25.5",
"eslint": "^9.39.4",
"eslint-plugin-obsidianmd": "^0.4.0",
"globals": "^17.6.0",
"jiti": "^2.6.1",
"obsidian": "latest",
"typescript": "^5.8.3",
"typescript-eslint": "^8.59.1"
}
}