{
"name": "@kody/trello",
"version": "1.0.0",
"description": "Read and update Trello boards, lists, cards, and comments with dry-run mutations.",
"type": "module",
"license": "MIT",
"private": false,
"exports": {
".": "./src/index.ts",
"./accounts": "./src/accounts.ts",
"./request": "./src/request.ts",
"./viewer": "./src/viewer.ts",
"./boards": "./src/boards.ts",
"./lists": "./src/lists.ts",
"./cards": "./src/cards.ts",
"./comments": "./src/comments.ts",
"./smoke-test": "./src/smoke-test.ts",
"./scheduled-account-health": "./src/scheduled-account-health.ts",
"./types": "./src/types.ts"
},
"files": [
"src",
"README.md",
"LICENSE",
"community-icon.svg"
],
"scripts": {
"test": "node --experimental-strip-types --test src/*.test.ts"
},
"kody": {
"id": "trello",
"name": "Trello",
"description": "Read and update Trello boards, lists, cards, and comments with dry-run mutations.",
"logo": "./community-icon.svg",
"tags": [
"trello",
"boards",
"lists",
"cards",
"comments",
"oauth",
"api-key",
"token",
"dry-run"
],
"searchText": "trello boards lists cards comments oauth api key token trelloApiKey trelloToken dryRun confirm api.trello.com multi-account trello trello-* authorize",
"jobs": {
"account-health": {
"entry": "./src/scheduled-account-health.ts",
"schedule": {
"type": "cron",
"expression": "0 9 * * 1"
},
"timezone": "UTC",
"enabled": false
}
}
}
}