mirror of
https://github.com/callumalpass/tasknotes.git
synced 2026-07-22 12:50:26 +00:00
70 lines
2.6 KiB
JSON
70 lines
2.6 KiB
JSON
{
|
|
"name": "tasknotes",
|
|
"version": "3.25.3",
|
|
"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 && npm run copy-files",
|
|
"dev:watch": "npm run build-css && node generate-release-notes-import.mjs && node esbuild.config.mjs",
|
|
"copy-files": "node copy-files.mjs",
|
|
"build-css": "node build-css.mjs",
|
|
"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": "node scripts/i18n-manager.mjs sync",
|
|
"i18n:verify": "node scripts/i18n-manager.mjs verify",
|
|
"i18n:status": "node scripts/i18n-manager.mjs status"
|
|
},
|
|
"keywords": [],
|
|
"author": "",
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"@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",
|
|
"jest": "^30.1.1",
|
|
"jest-environment-jsdom": "^30.1.1",
|
|
"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"
|
|
}
|
|
}
|