task-master-sync
Version:
A bidirectional synchronization tool between TaskMaster AI and Monday.com with automatic item recreation
77 lines (76 loc) • 1.98 kB
JSON
{
"name": "task-master-sync",
"version": "0.2.1",
"description": "A bidirectional synchronization tool between TaskMaster AI and Monday.com with automatic item recreation",
"main": "src/index.js",
"bin": {
"taskmaster-sync": "./src/cli/index.js",
"taskmaster-sync-get-columns": "./scripts/get-monday-columns.js"
},
"files": [
"src/**/*",
"README.md",
"README-BidirectionalSync.md",
"LICENSE",
"sync-config.example.json",
"env.example",
"scripts/postinstall.js",
"scripts/get-monday-columns.js"
],
"scripts": {
"start": "node src/index.js",
"test": "jest",
"lint": "eslint src",
"lint-fix": "eslint src --fix",
"push": "node src/cli/index.js push",
"pull": "node src/cli/index.js pull",
"get-columns": "node scripts/get-monday-columns.js",
"prepublishOnly": "npm run lint && npm test",
"postinstall": "node scripts/postinstall.js"
},
"keywords": [
"taskmaster",
"monday.com",
"sync",
"bidirectional",
"auto-recreation",
"productivity",
"task-management",
"integration"
],
"author": {
"name": "Brian Kennedy",
"email": "brian.kennedy@integrityxd.com",
"url": "https://integrityxd.com"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/integritystl/task-master-sync.git"
},
"bugs": {
"url": "https://github.com/integritystl/task-master-sync/issues"
},
"homepage": "https://github.com/integritystl/task-master-sync#readme",
"dependencies": {
"axios": "^1.9.0",
"chalk": "^5.4.1",
"commander": "^14.0.0",
"dotenv": "^16.3.1",
"fs-extra": "^11.2.0",
"monday-sdk-js": "^0.5.6",
"ora": "^8.2.0",
"uuid": "^11.1.0",
"winston": "^3.17.0"
},
"devDependencies": {
"@eslint/js": "^9.27.0",
"eslint": "^9.28.0",
"globals": "^16.2.0",
"jest": "^30.0.0",
"prettier": "^3.1.0"
},
"engines": {
"node": ">=18.0.0"
}
}