mirror of
https://github.com/reifat/daily-notes-sorter.git
synced 2026-07-22 06:42:08 +00:00
36 lines
922 B
JSON
36 lines
922 B
JSON
{
|
|
"name": "daily-notes-sorter",
|
|
"version": "1.0.0",
|
|
"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",
|
|
"release": "npm run build && node scripts/release.js"
|
|
},
|
|
"keywords": [
|
|
"obsidian",
|
|
"obsidian-plugin",
|
|
"daily-notes",
|
|
"sorting",
|
|
"file-explorer"
|
|
],
|
|
"author": "Reifat <https://github.com/Reifat>",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"monkey-around": "^3.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^20.0.0",
|
|
"@typescript-eslint/eslint-plugin": "^8.0.0",
|
|
"@typescript-eslint/parser": "^8.0.0",
|
|
"archiver": "^7.0.1",
|
|
"builtin-modules": "3.3.0",
|
|
"esbuild": "^0.25.12",
|
|
"eslint": "^9.0.0",
|
|
"moment": "^2.30.1",
|
|
"obsidian": "latest",
|
|
"tslib": "2.4.0",
|
|
"typescript": "^5.3.0"
|
|
}
|
|
}
|