callumalpass_tasknotes/package.json
2025-07-23 22:06:09 +10:00

56 lines
1.9 KiB
JSON

{
"name": "tasknotes",
"version": "3.15.1",
"description": "Note-based task management with calendar, pomodoro and time-tracking integration.",
"main": "main.js",
"scripts": {
"dev": "npm run build-css && node esbuild.config.mjs",
"build": "npm run build-css && tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
"build-css": "node build-css.mjs",
"version": "node version-bump.mjs && git add manifest.json versions.json",
"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 --testPathPattern=unit",
"test:performance": "jest --testPathPattern=performance --detectOpenHandles --passWithNoTests",
"test:build": "node -e \"console.log('Build test passed - plugin bundle created successfully')\"",
"lint": "eslint src/ --ext .ts",
"typecheck": "tsc --noEmit"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.5.8",
"@types/node": "^16.11.6",
"@types/yaml": "^1.9.6",
"@typescript-eslint/eslint-plugin": "^5.29.0",
"@typescript-eslint/parser": "^5.29.0",
"builtin-modules": "3.3.0",
"esbuild": "0.17.3",
"eslint": "^8.56.0",
"eslint-plugin-obsidianmd": "^0.0.2",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"obsidian": "latest",
"ts-jest": "^29.1.1",
"tslib": "2.4.0",
"typescript": "4.7.4"
},
"dependencies": {
"@codemirror/view": "^6.37.2",
"@fullcalendar/core": "^6.1.17",
"@fullcalendar/daygrid": "^6.1.17",
"@fullcalendar/interaction": "^6.1.17",
"@fullcalendar/multimonth": "^6.1.17",
"@fullcalendar/timegrid": "^6.1.17",
"chrono-node": "^2.7.5",
"date-fns": "^2.30.0",
"ical.js": "^1.5.0",
"obsidian-daily-notes-interface": "^0.9.4",
"rrule": "^2.8.1",
"yaml": "^2.3.1"
}
}