mirror of
https://github.com/heroblackink/ultimate-todoist-sync-for-obsidian.git
synced 2026-07-22 07:40:27 +00:00
- Upgrade @doist/todoist-api-typescript from v2.1.2 to v6.5.0 - Update todoistRestAPI.ts to handle new pagination format (result.results) - Update esbuild.config.mjs to handle Node.js built-in modules - Add tests directory with API test scripts - Add AGENTS.md for agentic coding guidelines - Update CHANGELOG.md with migration details
28 lines
814 B
JSON
28 lines
814 B
JSON
{
|
|
"name": "ultimate-todoist-sync",
|
|
"version": "1.0.0",
|
|
"description": "This is a sample plugin for Obsidian (https://obsidian.md)",
|
|
"main": "main.js",
|
|
"scripts": {
|
|
"dev": "node esbuild.config.mjs",
|
|
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
|
|
"build-without-tsc": "node esbuild.config.mjs production",
|
|
"version": "node version-bump.mjs && git add manifest.json versions.json"
|
|
},
|
|
"keywords": [],
|
|
"author": "",
|
|
"license": "GNU GPLv3",
|
|
"devDependencies": {
|
|
"@types/node": "^16.11.6",
|
|
"@typescript-eslint/eslint-plugin": "5.29.0",
|
|
"@typescript-eslint/parser": "5.29.0",
|
|
"builtin-modules": "3.3.0",
|
|
"esbuild": "0.17.3",
|
|
"obsidian": "latest",
|
|
"tslib": "2.4.0",
|
|
"typescript": "4.7.4"
|
|
},
|
|
"dependencies": {
|
|
"@doist/todoist-api-typescript": "^6.5.0"
|
|
}
|
|
}
|