ysonc_obsidian-tasks-syncer/package.json
2026-07-19 18:43:06 +08:00

57 lines
1.6 KiB
JSON

{
"name": "task-syncer-plugin",
"private": true,
"version": "2.1.3",
"description": "Sync tasks with Microsoft To Do and TickTick.",
"main": "main.js",
"scripts": {
"dev": "node esbuild.config.mjs",
"build": "tsc --noEmit --skipLibCheck && node esbuild.config.mjs production",
"test": "node --test tests/*.test.mjs && vitest run",
"test:watch": "vitest",
"coverage": "vitest run --coverage",
"lint": "eslint .",
"validate:release": "node scripts/validate-release.mjs",
"check": "npm run lint && npm test && npm run coverage && npm run build && npm run validate:release && git diff --check",
"prepublishOnly": "node -e \"console.error('Task Syncer is released through GitHub, not npm.'); process.exit(1)\"",
"version": "node version-bump.mjs && git add manifest.json versions.json"
},
"keywords": [
"obsidian",
"plugin",
"todo",
"microsoft",
"ticktick",
"oauth",
"tasks"
],
"author": "Wyson Cheng",
"license": "MIT",
"devDependencies": {
"@electron/remote": "^2.1.3",
"@eslint/js": "^9.39.5",
"@types/canvas-confetti": "^1.9.0",
"@types/node": "22.18.12",
"@typescript-eslint/eslint-plugin": "8.46.1",
"@typescript-eslint/parser": "8.46.1",
"@vitest/coverage-v8": "4.1.10",
"electron": "^39.8.10",
"esbuild": "^0.25.2",
"eslint": "^9.39.5",
"eslint-plugin-obsidianmd": "0.4.1",
"flatted": "3.4.2",
"globals": "^16.5.0",
"obsidian": "1.13.1",
"tslib": "^2.4.0",
"typescript": "5.9.3",
"typescript-eslint": "8.46.1",
"vitest": "4.1.10"
},
"dependencies": {
"@azure/msal-node": "^5.4.1",
"canvas-confetti": "^1.9.3"
},
"overrides": {
"jws": "3.2.3"
}
}