taskgenius_taskgenius-plugin/package.json

53 lines
1.6 KiB
JSON
Raw Normal View History

2022-06-07 06:12:30 +00:00
{
2022-06-09 14:59:52 +00:00
"name": "obsidian-task-progress-bar",
2025-04-05 09:29:03 +00:00
"version": "6.2.2",
2025-03-12 04:36:15 +00:00
"description": "Comprehensive task management plugin for Obsidian with progress bars, task status cycling, and advanced task tracking features.",
2022-06-07 06:12:30 +00:00
"main": "main.js",
"scripts": {
"dev": "node esbuild.config.mjs",
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
2025-03-29 16:30:03 +00:00
"version": "node version-bump.mjs && git add manifest.json versions.json",
"extract-translations": "cross-env node scripts/extract-translations.cjs",
"generate-locale-files": "cross-env node scripts/generate-locale-files.cjs"
2022-06-07 06:12:30 +00:00
},
2025-03-12 04:36:15 +00:00
"keywords": [
"obsidian",
"task",
"progress",
"bar",
"task management",
"task tracking",
"task progress",
"task status",
"task cycle",
"task marks"
],
2022-06-09 14:59:52 +00:00
"author": "Boninall",
2022-06-07 06:12:30 +00:00
"license": "MIT",
"devDependencies": {
2022-06-23 08:29:30 +00:00
"@codemirror/autocomplete": "^6.0.0",
"@codemirror/commands": "^6.0.0",
"@codemirror/lang-css": "^6.0.0",
"@codemirror/lang-html": "^6.0.0",
2022-06-23 08:29:30 +00:00
"@codemirror/language": "https://github.com/lishid/cm-language",
"@codemirror/lint": "^6.0.0",
"@codemirror/search": "^6.0.0",
"@codemirror/state": "^6.0.0",
2022-06-09 14:55:43 +00:00
"@codemirror/stream-parser": "https://github.com/lishid/stream-parser",
"@codemirror/view": "^6.0.0",
2022-06-07 06:12:30 +00:00
"@types/node": "^16.11.6",
"@typescript-eslint/eslint-plugin": "^5.2.0",
"@typescript-eslint/parser": "^5.2.0",
"builtin-modules": "^3.2.0",
"codemirror": "^6.0.0",
2025-03-29 16:30:03 +00:00
"cross-env": "^7.0.3",
2022-06-07 06:12:30 +00:00
"esbuild": "0.13.12",
"monkey-around": "^3.0.0",
"obsidian": "^1.8.7",
"obsidian-typings": "^2.39.0",
"regexp-match-indices": "^1.0.2",
2022-06-09 14:55:43 +00:00
"tslib": "2.4.0",
"typescript": "4.7.3"
2022-06-07 06:12:30 +00:00
}
}