Hi Manuel!
Thanks for publishing the plugins! A plugin developer license has been applied to you XD
BTW, Iāve tried to use the todoist-sync but got an error on loading:
Error: Cannot find module 'inkdrop-model'
Require stack:
- /Users/nora/Library/Application Support/inkdrop/packages/todoist-sync/lib/todoist-sync-core.js
- /Users/nora/Library/Application Support/inkdrop/packages/todoist-sync/lib/todoist-sync.js
- /Applications/Inkdrop.app/Contents/Resources/app.asar/index.html
I found that the dependencies in package.json
looks wrong:
"dependencies": {
"@doist/todoist-api-typescript": "^1.5.0",
"@types/react": "^18.0.11"
},
"devDependencies": {
"@types/node": "^14.11.2",
"gts": "^3.1.0",
"inkdrop-model": "^2.7.1",
"typescript": "^4.7.2"
},
It should be something like:
"dependencies": {
"@doist/todoist-api-typescript": "^1.5.0",
"inkdrop-model": "^2.7.1"
},
"devDependencies": {
"@types/react": "^18.0.11",
"@types/node": "^14.11.2",
"gts": "^3.1.0",
"typescript": "^4.7.2"
},