mirror of
https://github.com/reifat/daily-notes-sorter.git
synced 2026-07-22 06:42:08 +00:00
Bump plugin and npm package version; add 1.0.1 to versions.json. Update install script examples and docs to use RELEASE_TAG 1.0.1. Co-authored-by: Cursor <cursoragent@cursor.com>
52 lines
1.5 KiB
JSON
52 lines
1.5 KiB
JSON
{
|
|
"name": "daily-notes-sorter",
|
|
"version": "1.0.1",
|
|
"description": "Obsidian plugin for automatically sorting daily notes by date in the file explorer",
|
|
"main": "main.js",
|
|
"scripts": {
|
|
"dev": "node esbuild.config.mjs",
|
|
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
|
|
"test": "jest",
|
|
"lint": "eslint . --max-warnings=0",
|
|
"lint:fix": "eslint . --fix",
|
|
"format": "prettier --write .",
|
|
"format:check": "prettier --check .",
|
|
"release": "npm run format && npm run lint && npm run test && npm run build && node scripts/build.js Release",
|
|
"install:release": "node scripts/install.js Release"
|
|
},
|
|
"keywords": [
|
|
"obsidian",
|
|
"obsidian-plugin",
|
|
"daily-notes",
|
|
"sorting",
|
|
"file-explorer"
|
|
],
|
|
"author": "Reifat <https://github.com/Reifat>",
|
|
"license": "MIT",
|
|
"type": "module",
|
|
"dependencies": {
|
|
"archiver": "^7.0.1",
|
|
"monkey-around": "^3.0.0",
|
|
"moment": "2.29.4"
|
|
},
|
|
"peerDependencies": {
|
|
"obsidian": ">=1.1.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/jest": "^29.5.14",
|
|
"@eslint/js": "^9.39.1",
|
|
"@types/node": "^20.0.0",
|
|
"esbuild": "^0.25.12",
|
|
"eslint": "^9.39.1",
|
|
"eslint-config-prettier": "^10.1.8",
|
|
"eslint-plugin-import-x": "~4.15.2",
|
|
"eslint-plugin-obsidianmd": "^0.1.8",
|
|
"eslint-plugin-unicorn": "^62.0.0",
|
|
"jest": "^29.7.0",
|
|
"obsidian": "latest",
|
|
"prettier": "^3.6.2",
|
|
"ts-jest": "^29.2.5",
|
|
"typescript": "^5.3.0",
|
|
"typescript-eslint": "^8.46.3"
|
|
}
|
|
}
|