mirror of
https://github.com/callumalpass/tasknotes.git
synced 2026-07-22 12:50:26 +00:00
60 lines
2 KiB
JSON
60 lines
2 KiB
JSON
{
|
|
"name": "tasknotes",
|
|
"version": "3.23.0",
|
|
"description": "Note-based task management with calendar, pomodoro and time-tracking integration.",
|
|
"main": "main.js",
|
|
"scripts": {
|
|
"build": "npm run build-css && tsc -noEmit --skipLibCheck && node esbuild.config.mjs production",
|
|
"dev": "npm run build && npm run copy-files",
|
|
"dev:watch": "npm run build-css && node esbuild.config.mjs",
|
|
"copy-files": "node copy-files.mjs",
|
|
"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 --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",
|
|
"typecheck": "tsc --noEmit"
|
|
},
|
|
"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-plugin-obsidianmd": "^0.0.2",
|
|
"jest": "^30.1.1",
|
|
"jest-environment-jsdom": "^30.1.1",
|
|
"obsidian": "latest",
|
|
"obsidian-typings": "^4.49.0",
|
|
"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/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"
|
|
}
|
|
}
|