mirror of
https://github.com/jsmorabito/obsidian-commander.git
synced 2026-07-22 06:40:31 +00:00
Fixed bug where status bar commands would be deleted from the list when the command stopped being available (e.g. from other plugins that hadn't loaded yet at onLayoutReady time). Co-authored-by: davidvkimball <davidvkimball@users.noreply.github.com> Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
69 lines
2.1 KiB
JSON
69 lines
2.1 KiB
JSON
{
|
|
"name": "cmdr",
|
|
"version": "0.5.6",
|
|
"description": "Customize your workspace by adding commands /everywhere/.",
|
|
"main": "main.js",
|
|
"scripts": {
|
|
"dev:esbuild": "node scripts/esbuild.config.mjs",
|
|
"build:esbuild": "tsc -noEmit -skipLibCheck && node scripts/esbuild.config.mjs production",
|
|
"version": "node scripts/version-bump.mjs && git add manifest.json versions.json",
|
|
"icons": "node scripts/update-icon-list.mjs",
|
|
"build:css": "npx tailwindcss -i ./main.css -o ./styles.css --minify",
|
|
"build": "npm run build:esbuild && npm run build:css",
|
|
"dev:css": "npx tailwindcss -i ./main.css -o ./styles.css --watch",
|
|
"dev": "npm-run-all --parallel dev:*"
|
|
},
|
|
"keywords": [],
|
|
"author": "jsmorabito & phibr0",
|
|
"devDependencies": {
|
|
"@codemirror/autocomplete": "^6.3.4",
|
|
"@codemirror/commands": "^6.1.2",
|
|
"@codemirror/lang-css": "^6.0.1",
|
|
"@codemirror/lang-html": "^6.3.1",
|
|
"@codemirror/language": "github:lishid/cm-language",
|
|
"@codemirror/lint": "^6.1.0",
|
|
"@codemirror/search": "^6.2.3",
|
|
"@codemirror/state": "^6.1.4",
|
|
"@codemirror/view": "^6.6.0",
|
|
"@types/canvas-confetti": "^1.6.0",
|
|
"@types/node": "^18.11.9",
|
|
"@types/react": "^18.0.25",
|
|
"@typescript-eslint/eslint-plugin": "^5.45.0",
|
|
"@typescript-eslint/parser": "^5.45.0",
|
|
"builtin-modules": "^3.3.0",
|
|
"codemirror": "^6.0.1",
|
|
"codemirror6-themes": "^0.1.2",
|
|
"esbuild": "^0.25.0",
|
|
"esbuild-plugin-alias": "^0.2.1",
|
|
"esbuild-sass-plugin": "3.3.1",
|
|
"sass-embedded": "^1.71.1",
|
|
"node-fetch": "^3.3.0",
|
|
"npm-run-all": "^4.1.5",
|
|
"obsidian": "latest",
|
|
"tailwindcss": "^3.2.4",
|
|
"tslib": "^2.4.1",
|
|
"typescript": "^4.9.3"
|
|
},
|
|
"dependencies": {
|
|
"array-move": "^4.0.0",
|
|
"canvas-confetti": "^1.6.0",
|
|
"preact": "^10.11.3"
|
|
},
|
|
"overrides": {
|
|
"ajv": "^6.14.0",
|
|
"brace-expansion": "^1.1.13",
|
|
"braces": "^3.0.3",
|
|
"cross-spawn": "^7.0.5",
|
|
"flatted": "^3.4.2",
|
|
"immutable": "^4.3.8",
|
|
"js-yaml": "^4.1.1",
|
|
"micromatch": "^4.0.8",
|
|
"minimatch": "^3.1.5",
|
|
"nanoid": "^3.3.8",
|
|
"picomatch": "^2.3.2",
|
|
"postcss": "^8.5.10",
|
|
"semver": "^7.5.2",
|
|
"word-wrap": "^1.2.4",
|
|
"yaml": "^1.10.3"
|
|
}
|
|
}
|