mirror of
https://github.com/bueckerlars/obsidian-note-mover-shortcut.git
synced 2026-07-22 05:46:00 +00:00
55 lines
1.7 KiB
JSON
55 lines
1.7 KiB
JSON
{
|
|
"name": "obsidian-note-mover-shortcut",
|
|
"version": "1.0.0",
|
|
"description": "Quickly and easily move notes to a predefined folder. Perfect for organizing your notes.",
|
|
"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 . --ext .ts",
|
|
"lint:fix": "eslint . --ext .ts --fix",
|
|
"test": "vitest run --config vitest.config.mjs",
|
|
"test:watch": "vitest --config vitest.config.mjs",
|
|
"prepare": "husky"
|
|
},
|
|
"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": "^3.2.4",
|
|
"builtin-modules": "3.3.0",
|
|
"esbuild": "^0.25.9",
|
|
"eslint": "^8.57.1",
|
|
"husky": "^9.1.7",
|
|
"jsdom": "^25.0.1",
|
|
"lint-staged": "^16.2.1",
|
|
"obsidian": "latest",
|
|
"prettier": "^3.6.2",
|
|
"tslib": "2.4.0",
|
|
"tsx": "^4.20.6",
|
|
"typescript": "~5.6.3",
|
|
"valibot": "^1.3.1",
|
|
"vite": "^6.4.2",
|
|
"vitest": "^3.2.4"
|
|
},
|
|
"dependencies": {
|
|
"@popperjs/core": "^2.11.8"
|
|
},
|
|
"lint-staged": {
|
|
"*.{ts,js}": [
|
|
"eslint --fix --max-warnings 0",
|
|
"prettier --write"
|
|
],
|
|
"*.{json,md}": [
|
|
"prettier --write"
|
|
]
|
|
}
|
|
}
|