2025-04-03 13:49:10 +00:00
{
2025-07-23 19:11:51 +00:00
"name" : "obsidian-note-status" ,
"version" : "2.0.0" ,
"description" : "Enhance your note organization with a status management system. Assign and track statuses (active, on hold, completed, dropped) for your notes with a customizable interface including status pane, dropdown, and file explorer integration." ,
2025-04-03 13:49:10 +00:00
"main" : "main.js" ,
"scripts" : {
"dev" : "node esbuild.config.mjs" ,
"build" : "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production" ,
2025-05-25 10:08:27 +00:00
"version" : "node version-bump.mjs && git add manifest.json versions.json" ,
"format" : "prettier --write \"**/*.{ts,tsx,js,jsx,json,css,md}\"" ,
"format:check" : "prettier --check \"**/*.{ts,tsx,js,jsx,json,css,md}\"" ,
"lint" : "eslint . --ext .ts,.tsx --max-warnings 0" ,
"lint:fix" : "eslint . --ext .ts,.tsx --fix" ,
"check" : "npm run format:check && npm run lint" ,
"prepare" : "husky install"
2025-04-03 13:49:10 +00:00
} ,
"keywords" : [ ] ,
"author" : "" ,
"license" : "MIT" ,
2025-06-12 19:05:41 +00:00
"dependencies" : {
"react" : "^18.2.0" ,
"react-dom" : "^18.2.0"
} ,
2025-04-03 13:49:10 +00:00
"devDependencies" : {
"@types/node" : "^16.11.6" ,
2025-06-12 19:05:41 +00:00
"@types/react" : "^18.2.0" ,
"@types/react-dom" : "^18.2.0" ,
2025-05-25 10:08:27 +00:00
"@typescript-eslint/eslint-plugin" : "^6.21.0" ,
"@typescript-eslint/parser" : "^6.21.0" ,
2025-04-03 13:49:10 +00:00
"builtin-modules" : "3.3.0" ,
2025-05-25 10:08:27 +00:00
"commander" : "13.1.0" ,
2025-04-03 13:49:10 +00:00
"esbuild" : "0.17.3" ,
2025-05-25 10:08:27 +00:00
"eslint" : "^8.57.0" ,
"eslint-config-prettier" : "^9.1.0" ,
"eslint-plugin-import" : "^2.29.1" ,
2025-06-12 19:05:41 +00:00
"eslint-plugin-react" : "^7.32.0" ,
"eslint-plugin-react-hooks" : "^4.6.0" ,
2025-05-25 10:08:27 +00:00
"husky" : "^8.0.0" ,
"lint-staged" : "^15.2.2" ,
2025-04-03 13:49:10 +00:00
"obsidian" : "latest" ,
2025-05-25 10:08:27 +00:00
"prettier" : "^3.2.5" ,
2025-04-03 13:49:10 +00:00
"tslib" : "2.4.0" ,
2025-05-25 10:08:27 +00:00
"typescript" : "4.7.4"
} ,
"lint-staged" : {
"*.{ts,tsx}" : [
"eslint --fix" ,
"prettier --write"
] ,
"*.{json,css,md}" : [
"prettier --write"
]
2025-04-03 13:49:10 +00:00
}
}