mirror of
https://github.com/bueckerlars/obsidian-note-mover-shortcut.git
synced 2026-07-22 05:46:00 +00:00
64 lines
2 KiB
JSON
64 lines
2 KiB
JSON
{
|
|
"name": "obsidian-note-mover-shortcut",
|
|
"version": "1.2.0",
|
|
"description": "Automatically move notes into folders using configurable rules — match on tags, properties, filenames, dates, and more. Supports templates, blacklist filters, preview, attachment co-move, and undo.",
|
|
"main": "main.js",
|
|
"scripts": {
|
|
"dev": "npm run generate-changelog && node esbuild.config.mjs",
|
|
"build": "npm run generate-changelog && tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
|
|
"generate-changelog": "tsx scripts/generate-changelog.ts",
|
|
"version": "node version-bump.mjs && git add manifest.json versions.json",
|
|
"type-check": "tsc --noEmit",
|
|
"format": "prettier --write .",
|
|
"format:check": "prettier --check .",
|
|
"lint": "eslint .",
|
|
"lint:fix": "eslint . --fix",
|
|
"test": "vitest run --config vitest.config.mjs",
|
|
"test:watch": "vitest --config vitest.config.mjs",
|
|
"prepare": "husky",
|
|
"prelint": "npm run generate-changelog",
|
|
"pretype-check": "npm run generate-changelog"
|
|
},
|
|
"keywords": [],
|
|
"author": "bueckerlars",
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"@types/node": "^20.19.39",
|
|
"@typescript-eslint/eslint-plugin": "^8.58.2",
|
|
"@typescript-eslint/parser": "^8.58.2",
|
|
"@vitest/coverage-v8": "^4.1.8",
|
|
"esbuild": "^0.25.9",
|
|
"eslint": "^9.39.4",
|
|
"eslint-plugin-obsidianmd": "^0.3.0",
|
|
"eslint-plugin-unused-imports": "^4.4.1",
|
|
"husky": "^9.1.7",
|
|
"jsdom": "^25.0.1",
|
|
"nano-staged": "^0.9.0",
|
|
"obsidian": "latest",
|
|
"prettier": "^3.6.2",
|
|
"tslib": "2.4.0",
|
|
"tsx": "^4.20.6",
|
|
"typescript": "~5.6.3",
|
|
"typescript-eslint": "^8.60.1",
|
|
"valibot": "^1.3.1",
|
|
"vite": "^6.4.2",
|
|
"vitest": "^4.1.8"
|
|
},
|
|
"dependencies": {
|
|
"@popperjs/core": "^2.11.8"
|
|
},
|
|
"nano-staged": {
|
|
"*.{ts,js}": [
|
|
"eslint --fix --max-warnings 0 --no-warn-ignored",
|
|
"prettier --write"
|
|
],
|
|
"*.{json,md}": [
|
|
"prettier --write"
|
|
]
|
|
},
|
|
"allowScripts": {
|
|
"esbuild@0.25.12": true,
|
|
"fsevents@2.3.3": true,
|
|
"esbuild@0.28.1": true
|
|
}
|
|
}
|