callumalpass_tasknotes/package.json
callumalpass 121013616a release 4.2.0
Added:
- Korean language support (1911 localization keys)
- Obsidian 1.11.0 API features with backwards compatibility
- shortYear template variable for custom filename/folder templates
- Option to prevent auto-creation of default Base view files
- Shift+click on status icon to cycle backwards
- Vim insert mode auto-start in task creation modal
- Button tooltips to calendar view toolbar and task modal
- Settings sync across devices via Obsidian Sync
- Kanban view option for status icons in column headers only
- Calendar view option to span tasks between scheduled and due dates
- currentNotePath support for "Create new inline task" command
- Option to open Pomodoro timer in mobile sidebar
- Option to use ICS event end time as task due date
- Option to use task duration for ICS calendar export

Fixed:
- Title sanitization when "Store Task Title in Filename" is disabled
- Duplicate task entries in Agenda view
- timeEstimateCategory formula for new tasks
- Bases views resetting to Calendar view
- Overdue strikethrough on completed tasks
- Calendar view crash with invalid date formats
- Today column styling in calendar week/day views
- Drag-and-drop in Kanban view on mobile
- Pomodoro task menu not showing new tasks
- "Unsaved Changes" popup appearing randomly
- Kanban swimlane column assignment with formula grouping
- Date context menu time preservation with increment options
- v3 saved views export to Bases format
- Due date dragging in calendar view
- Calendar view responsiveness for user interactions
- Pomodoro timer button visibility
- Views in pop-out windows (drag-and-drop, context menus, etc.)
- "Convert current note to task" default values
- Blocking view error with single dependency
- Missing navigation link to Default Base Templates
- "Go to today's note" command in positive UTC offset timezones
2026-01-02 08:34:00 +11:00

85 lines
3.2 KiB
JSON

{
"name": "tasknotes",
"version": "4.2.0",
"description": "Note-based task management with calendar, pomodoro and time-tracking integration.",
"main": "main.js",
"scripts": {
"build": "npm run build-css && node generate-release-notes-import.mjs && tsc -noEmit --skipLibCheck && node esbuild.config.mjs production",
"dev": "npm run build-css && node generate-release-notes-import.mjs && node esbuild.config.mjs",
"build:test": "npm run build && node copy-files.mjs",
"copy-files": "node copy-files.mjs",
"build-css": "node build-css.mjs",
"e2e": "playwright test",
"e2e:docs": "playwright test e2e/docs-screenshots.spec.ts",
"e2e:docs:copy": "mkdir -p media/docs && cp test-results/docs/*.png media/docs/",
"e2e:setup": "bash e2e-setup.sh",
"e2e:launch": "bash e2e-launch.sh",
"version": "node version-bump.mjs && node generate-release-notes-import.mjs && git add manifest.json versions.json src/releaseNotes.ts",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:ci": "jest --ci --coverage --watchAll=false",
"test:integration": "jest --config jest.integration.config.js",
"test:unit": "jest --testPathPatterns=unit",
"test:performance": "jest --testPathPatterns=performance --detectOpenHandles --passWithNoTests",
"test:build": "node -e \"console.log('Build test passed - plugin bundle created successfully')\"",
"lint": "eslint src/ --ext .ts",
"lint:fix": "eslint src/ --ext .ts --fix",
"format": "prettier --write \"src/**/*.{ts,js,json,md}\"",
"format:check": "prettier --check \"src/**/*.{ts,js,json,md}\"",
"typecheck": "tsc --noEmit",
"i18n:sync": "i18n-state sync",
"i18n:verify": "i18n-state verify",
"i18n:status": "i18n-state status",
"i18n:check-usage": "i18n-state check-usage",
"i18n:find-unused": "i18n-state find-unused",
"i18n:check-duplicates": "i18n-state check-duplicates",
"i18n:generate-template": "i18n-state generate-template"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@codemirror/autocomplete": "^6.19.1",
"@codemirror/state": "^6.5.2",
"@electron/asar": "^3.4.1",
"@playwright/test": "^1.57.0",
"@types/jest": "^30.0.0",
"@types/node": "^24.3.0",
"@types/yaml": "^1.9.6",
"@typescript-eslint/eslint-plugin": "^5.29.0",
"@typescript-eslint/parser": "^5.29.0",
"builtin-modules": "^5.0.0",
"esbuild": "^0.25.9",
"eslint": "^8.56.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-obsidianmd": "^0.0.2",
"eslint-plugin-prettier": "^5.5.4",
"i18n-state-manager": "^0.1.0",
"jest": "^30.1.1",
"jest-environment-jsdom": "^30.1.1",
"monkey-around": "^3.0.0",
"obsidian": "latest",
"obsidian-typings": "^4.49.0",
"prettier": "^3.6.2",
"ts-jest": "^29.1.1",
"tslib": "^2.8.1",
"typescript": "^5.9.2"
},
"dependencies": {
"@codemirror/view": "^6.37.2",
"@fullcalendar/core": "^6.1.17",
"@fullcalendar/daygrid": "^6.1.17",
"@fullcalendar/interaction": "^6.1.17",
"@fullcalendar/list": "^6.1.17",
"@fullcalendar/multimonth": "^6.1.17",
"@fullcalendar/timegrid": "^6.1.17",
"chrono-node": "^2.7.5",
"date-fns": "^4.1.0",
"ical.js": "^2.2.1",
"obsidian-daily-notes-interface": "^0.9.4",
"reflect-metadata": "^0.2.2",
"rrule": "^2.8.1",
"yaml": "^2.3.1"
}
}