mirror of
https://github.com/callumalpass/tasknotes.git
synced 2026-07-22 12:50:26 +00:00
101 lines
4.2 KiB
JSON
101 lines
4.2 KiB
JSON
{
|
|
"name": "tasknotes",
|
|
"version": "4.8.1",
|
|
"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:release-gifs": "playwright test e2e/release-gifs.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 && npm run docs:sync && git add manifest.json versions.json src/releaseNotes.ts docs/releases.md PRIVACY.md",
|
|
"docs:sync": "node scripts/update-release-index.mjs && node scripts/sync-privacy.mjs",
|
|
"docs:check": "node scripts/update-release-index.mjs --check && node scripts/sync-privacy.mjs --check && node scripts/check-docs.mjs",
|
|
"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')\"",
|
|
"conformance:test": "node scripts/run-tasknotes-spec-conformance.mjs",
|
|
"lint": "node scripts/run-lint.mjs",
|
|
"lint:architecture": "node scripts/run-architecture-conformance.mjs",
|
|
"lint:ts": "eslint src/ package.json --max-warnings=0",
|
|
"lint:ts:fix": "eslint src/ package.json --fix",
|
|
"lint:css": "stylelint \"styles/**/*.css\" \"docs-builder/src/styles/**/*.css\" --max-warnings=0",
|
|
"lint:css:dist": "stylelint styles.css --max-warnings=0",
|
|
"lint:css:fix": "stylelint \"styles/**/*.css\" \"docs-builder/src/styles/**/*.css\" --fix",
|
|
"lint:fix": "npm run lint:ts:fix && npm run lint:css: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.0",
|
|
"@electron/asar": "^3.4.1",
|
|
"@eslint/js": "^9.39.4",
|
|
"@playwright/test": "^1.57.0",
|
|
"@types/jest": "^30.0.0",
|
|
"@types/node": "^24.3.0",
|
|
"@types/yaml": "^1.9.6",
|
|
"@typescript-eslint/eslint-plugin": "^8.59.3",
|
|
"@typescript-eslint/parser": "^8.59.3",
|
|
"esbuild": "^0.25.9",
|
|
"eslint": "^9.39.4",
|
|
"eslint-config-prettier": "^10.1.8",
|
|
"eslint-plugin-obsidianmd": "^0.3.0",
|
|
"eslint-plugin-prettier": "^5.5.4",
|
|
"globals": "^15.15.0",
|
|
"i18n-state-manager": "^0.1.0",
|
|
"jest": "^30.1.1",
|
|
"jest-environment-jsdom": "^30.1.1",
|
|
"monkey-around": "^3.0.0",
|
|
"obsidian": "^1.12.3",
|
|
"obsidian-typings": "^4.49.0",
|
|
"prettier": "^3.6.2",
|
|
"stylelint": "^17.11.0",
|
|
"ts-jest": "^29.1.1",
|
|
"tslib": "^2.8.1",
|
|
"typescript": "^5.9.2"
|
|
},
|
|
"dependencies": {
|
|
"@codemirror/view": "^6.38.6",
|
|
"@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",
|
|
"@modelcontextprotocol/sdk": "^1.12.1",
|
|
"chrono-node": "^2.7.5",
|
|
"date-fns": "^4.1.0",
|
|
"ical.js": "^2.2.1",
|
|
"lexorank": "1.0.5",
|
|
"obsidian-daily-notes-interface": "^0.9.4",
|
|
"reflect-metadata": "^0.2.2",
|
|
"rrule": "^2.8.1",
|
|
"tasknotes-nlp-core": "^0.1.5",
|
|
"yaml": "^2.3.1",
|
|
"zod": "^3.24.0"
|
|
}
|
|
}
|